| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299 |
- <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>
- <packaging>war</packaging>
- <name>DDDSample</name>
- <version>1.2-SNAPSHOT</version>
- <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:svn:https://dddsample.svn.sourceforge.net/svnroot/dddsample</developerConnection>
- <url>http://ddd.sventon.org</url>
- </scm>
- <properties>
- <spring.version>2.5.6</spring.version>
- <cxf.version>2.1.3</cxf.version>
- </properties>
- <build>
- <defaultGoal>package</defaultGoal>
- <plugins>
- <!-- Compiler -->
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.6</source>
- <target>1.6</target>
- <encoding>UTF-8</encoding>
- </configuration>
- </plugin>
-
- <!-- Jetty plugin -->
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>maven-jetty-plugin</artifactId>
- </plugin>
-
- <plugin>
- <artifactId>maven-jar-plugin</artifactId>
- <executions>
-
- <!-- Package booking service facade classes in separate jar -->
- <execution>
- <id>package-booking-facade</id>
- <phase>package</phase>
- <goals>
- <goal>jar</goal>
- </goals>
- <configuration>
- <classifier>booking-facade</classifier>
- <includes>
- <include>**/se/citerus/dddsample/interfaces/booking/facade/*.class</include>
- <include>**/se/citerus/dddsample/interfaces/booking/facade/dto/*.class</include>
- </includes>
- <archive>
- <addMavenDescriptor>false</addMavenDescriptor>
- </archive>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- <!-- Assembly -->
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
- <descriptorRefs>
- <descriptorRef>src</descriptorRef>
- </descriptorRefs>
- </configuration>
- </plugin>
-
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.4</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-webmvc</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-web</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring</artifactId>
- <version>${spring.version}</version>
- <exclusions>
- <exclusion>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-test</artifactId>
- <version>${spring.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
- <version>3.3.1.GA</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- <version>1.5.6</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>jcl-over-slf4j</artifactId>
- <version>1.5.6</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>1.5.6</version>
- </dependency>
- <dependency>
- <groupId>javassist</groupId>
- <artifactId>javassist</artifactId>
- <version>3.8.0.GA</version>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-annotations</artifactId>
- <version>3.4.0.GA</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>1.3.1</version>
- </dependency>
- <dependency>
- <groupId>commons-dbcp</groupId>
- <artifactId>commons-dbcp</artifactId>
- <version>1.2.2</version>
- </dependency>
- <dependency>
- <groupId>hsqldb</groupId>
- <artifactId>hsqldb</artifactId>
- <version>1.8.0.7</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>taglibs</groupId>
- <artifactId>standard</artifactId>
- <version>1.1.2</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- <version>1.1.2</version>
- </dependency>
- <dependency>
- <groupId>opensymphony</groupId>
- <artifactId>sitemesh</artifactId>
- <version>2.3</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.activemq</groupId>
- <artifactId>activemq-core</artifactId>
- <version>5.2.0</version>
- <exclusions>
- <exclusion>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging-api</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.apache.xbean</groupId>
- <artifactId>xbean-spring</artifactId>
- <version>3.4.3</version>
- </dependency>
- <dependency>
- <groupId>org.easymock</groupId>
- <artifactId>easymock</artifactId>
- <version>2.3</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.cxf</groupId>
- <artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>${cxf.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.cxf</groupId>
- <artifactId>cxf-rt-transports-http</artifactId>
- <version>${cxf.version}</version>
- </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>
|