| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>se.citerus</groupId>
- <artifactId>dddsample</artifactId>
- <name>DDDSample</name>
- <version>2.0-SNAPSHOT</version>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>1.5.7.RELEASE</version>
- </parent>
- <description>This application shows a few key concepts of
- Domain Driven Design implemented in Enterprise Java.
- </description>
- <url>http://dddsample.sourceforge.net</url>
- <distributionManagement>
- <site>
- <id>sf</id>
- <url>scp://shell.sf.net/home/groups/d/dd/dddsample/htdocs/preview</url>
- </site>
- </distributionManagement>
- <ciManagement/>
- <developers>
- <developer>
- <id>eric_evans</id>
- <name>Eric Evans</name>
- <organization>Domain Language, Inc.</organization>
- <organizationUrl>http://www.domainlanguage.com</organizationUrl>
- <timezone>-8</timezone>
- </developer>
- <developer>
- <id>peba</id>
- <name>Peter Backlund</name>
- <organization>Citerus</organization>
- <organizationUrl>http://www.citerus.se</organizationUrl>
- <timezone>+1</timezone>
- </developer>
- <developer>
- <id>patrikfr</id>
- <name>Patrik Fredriksson</name>
- <organization>Citerus</organization>
- <organizationUrl>http://www.citerus.se</organizationUrl>
- <timezone>+1</timezone>
- </developer>
- <developer>
- <id>jeham</id>
- <name>Jesper Hammarback</name>
- <organization>Citerus</organization>
- <organizationUrl>http://www.citerus.se</organizationUrl>
- <timezone>+1</timezone>
- </developer>
- <developer>
- <id>jorgen_falk</id>
- <name>Jorgen Falk</name>
- <organization>Citerus</organization>
- <organizationUrl>http://www.citerus.se</organizationUrl>
- <timezone>+1</timezone>
- </developer>
- </developers>
- <licenses>
- <license>
- <name>MIT</name>
- <url>http://www.opensource.org/licenses/mit-license.php</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
- <scm>
- <developerConnection>scm:git:https://github.com/citerus/dddsample-core</developerConnection>
- <url>https://github.com/citerus/dddsample-core</url>
- </scm>
- <properties>
- <java.version>1.8</java.version>
- <assertj.version>3.8.0</assertj.version>
- <hibernate.version>4.3.5.Final</hibernate.version>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-thymeleaf</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-jdbc</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-activemq</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-orm</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.cxf</groupId>
- <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
- <version>3.1.12</version>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
- </dependency>
- <dependency>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- <version>3.2.2</version>
- </dependency>
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>2.3</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>2.4</version>
- </dependency>
- <dependency>
- <groupId>commons-dbcp</groupId>
- <artifactId>commons-dbcp</artifactId>
- </dependency>
- <dependency>
- <groupId>org.hsqldb</groupId>
- <artifactId>hsqldb</artifactId>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.activemq</groupId>
- <artifactId>activemq-spring</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.xbean</groupId>
- <artifactId>xbean-spring</artifactId>
- <version>3.4.3</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.easymock</groupId>
- <artifactId>easymock</artifactId>
- <version>2.3</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.assertj</groupId>
- <artifactId>assertj-core</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.seleniumhq.selenium</groupId>
- <artifactId>selenium-java</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
- <reporting>
- <plugins>
- <!-- Javadoc -->
- <plugin>
- <artifactId>maven-javadoc-plugin</artifactId>
- </plugin>
- <!-- Source code cross reference -->
- <plugin>
- <artifactId>maven-jxr-plugin</artifactId>
- </plugin>
- <!-- Test report -->
- <plugin>
- <artifactId>maven-surefire-report-plugin</artifactId>
- </plugin>
- <!-- Test coverage -->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>cobertura-maven-plugin</artifactId>
- </plugin>
- <!-- CheckStyle report -->
- <plugin>
- <artifactId>maven-checkstyle-plugin</artifactId>
- <configuration>
- <configLocation>src/main/config/checkstyle.xml</configLocation>
- <!-- Java source code generated from WSDL -->
- <excludes>**/com/aggregator/**/*</excludes>
- </configuration>
- </plugin>
- </plugins>
- </reporting>
- </project>
|