| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400 |
- <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.1-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</url>
- </site>
- </distributionManagement>
- <ciManagement />
- <repositories>
- <repository>
- <id>maven2-repository.dev.java.net</id>
- <name>Java.net Repository for Maven</name>
- <url>http://download.java.net/maven/2</url>
- <layout>default</layout>
- </repository>
- <repository>
- <id>maven-repository.dev.java.net</id>
- <name>Java.net Repository for Maven 1</name>
- <url>http://download.java.net/maven/1</url>
- <layout>legacy</layout>
- </repository>
- </repositories>
- <pluginRepositories>
- <pluginRepository>
- <id>maven2-repository.dev.java.net</id>
- <name>Java.net Repository for Maven</name>
- <url>http://download.java.net/maven/2</url>
- </pluginRepository>
- </pluginRepositories>
- <developers>
- <developer>
- <id>eric_evans</id>
- <name>Eric Evans</name>
- <email>eric at domainlanguage dot com</email>
- <organization>Domain Language, Inc.</organization>
- <organizationUrl>http://www.domainlanguage.com</organizationUrl>
- <timezone>-8</timezone>
- </developer>
- <developer>
- <id>peba</id>
- <name>Peter Backlund</name>
- <email>peter.backlund@citerus.se</email>
- <organization>Citerus</organization>
- <organizationUrl>http://www.citerus.se</organizationUrl>
- <timezone>+1</timezone>
- </developer>
- <developer>
- <id>patrikfr</id>
- <name>Patrik Fredriksson</name>
- <email>patrikfr@users.sourceforge.net</email>
- <organization>Citerus</organization>
- <organizationUrl>http://www.citerus.se</organizationUrl>
- <timezone>+1</timezone>
- </developer>
- <developer>
- <id>jeham</id>
- <name>Jesper Hammarback</name>
- <email>jeham@users.sourceforge.net</email>
- <organization>Citerus</organization>
- <organizationUrl>http://www.citerus.se</organizationUrl>
- <timezone>+1</timezone>
- </developer>
- <developer>
- <id>jorgen_falk</id>
- <name>Jorgen Falk</name>
- <email>jorgen.falk@citerus.se</email>
- <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.1</spring.version>
- </properties>
- <build>
- <plugins>
- <!-- Compiler -->
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- <encoding>UTF-8</encoding>
- </configuration>
- </plugin>
-
- <!-- Jetty servlet container: http://jetty.mortbay.com/maven-plugin -->
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>maven-jetty-plugin</artifactId>
- <version>6.1.4</version>
- <configuration>
- <scanIntervalSeconds>3</scanIntervalSeconds>
- </configuration>
- </plugin>
-
- <!-- JAX-WS generation plugin -->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>jaxws-maven-plugin</artifactId>
- <version>1.9</version>
- <executions>
- <execution>
- <goals>
- <goal>wsgen</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <sei>se.citerus.dddsample.interfaces.handling.ws.HandlingReportServiceImpl</sei>
- <genWsdl>true</genWsdl>
- </configuration>
- </plugin>
-
- <!-- Jar plugin for generation of WS Client classes -->
- <plugin>
- <artifactId>maven-jar-plugin</artifactId>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>jar</goal>
- </goals>
- <configuration>
- <classifier>ws-client</classifier>
- <includes>
- <include>**/se/citerus/dddsample/application/ws/**</include>
- </includes>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- <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-orm</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-jdbc</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-aop</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-jms</artifactId>
- <version>${spring.version}</version>
- </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</artifactId>
- <version>3.2.5.ga</version>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-annotations</artifactId>
- <version>3.3.0.ga</version>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-commons-annotations</artifactId>
- <version>3.3.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-logging</groupId>
- <artifactId>commons-logging</artifactId>
- <version>1.1</version>
- <exclusions>
- <exclusion>
- <groupId>avalon-framework</groupId>
- <artifactId>avalon-framework</artifactId>
- </exclusion>
- <exclusion>
- <groupId>logkit</groupId>
- <artifactId>logkit</artifactId>
- </exclusion>
- </exclusions>
- </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.0.0</version>
- <exclusions>
- <!--
- This is a snapshot dependency, with no published pom.
- It does not appear to be needed either:
-
- http://mail-archives.apache.org/mod_mbox/activemq-commits/200610.mbox/%3C20061005025744.0C6591A981A@eris.apache.org%3E
- -->
- <exclusion>
- <groupId>org.apache.activemq</groupId>
- <artifactId>activeio-core</artifactId>
- </exclusion>
- <exclusion>
- <groupId>javax.xml</groupId>
- <artifactId>jaxb-api</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.easymock</groupId>
- <artifactId>easymock</artifactId>
- <version>2.3</version>
- <scope>test</scope>
- </dependency>
-
- <!-- JAX-WS integration with Spring. Lots of broken pom files unfortunately,
- so we need a few excluded-and-overridden dependencies.
- This problem will mostly go away when we move to Java 6.
-
- javax.activation is excluded because of class loading issues with Jetty:
- http://jira.codehaus.org/browse/JETTY-420
- -->
- <dependency>
- <groupId>org.jvnet.jax-ws-commons.spring</groupId>
- <artifactId>jaxws-spring</artifactId>
- <version>1.8</version>
- <exclusions>
- <exclusion>
- <groupId>org.springframework</groupId>
- <artifactId>spring</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.sun.xml.stream.buffer</groupId>
- <artifactId>streambuffer</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.jvnet.staxex</groupId>
- <artifactId>stax-ex</artifactId>
- </exclusion>
- <exclusion>
- <groupId>javax.activation</groupId>
- <artifactId>activation</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.jvnet.staxex</groupId>
- <artifactId>stax-ex</artifactId>
- <version>1.2</version>
- <scope>runtime</scope>
- <exclusions>
- <exclusion>
- <groupId>javax.activation</groupId>
- <artifactId>activation</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.sun.xml.stream.buffer</groupId>
- <artifactId>streambuffer</artifactId>
- <version>0.7</version>
- <scope>runtime</scope>
- <exclusions>
- <exclusion>
- <groupId>javax.activation</groupId>
- <artifactId>activation</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.sun.xml.ws</groupId>
- <artifactId>jaxws-rt</artifactId>
- <version>2.1.3</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>com.sun.istack</groupId>
- <artifactId>istack-commons-runtime</artifactId>
- <version>1.0</version>
- <scope>runtime</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>checkstyle.xml</configLocation>
- </configuration>
- </plugin>
- </plugins>
- </reporting>
- </project>
|