| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?xml version="1.0" encoding="UTF-8"?>
-
- <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>
- <version>1.0-SNAPSHOT</version>
- <name>DDDSample</name>
- <description>
- This application shows a few key concepts of
- Domain Driven Design implemented in Enterprise Java.
- </description>
- <url>http://sourceforge.net/projects/dddsample/</url>
-
- <ciManagement/>
-
- <scm>
- <developerConnection>scm:svn:https://dddsample.svn.sourceforge.net/svnroot/dddsample</developerConnection>
- <url>http://dddsample.svn.sourceforge.net/viewvc/dddsample/</url>
- </scm>
-
- <licenses>
- <license>
- <name>MIT</name>
- </license>
- </licenses>
-
- <developers>
- <developer>
- <id>peba</id>
- <name>Peter Backlund</name>
- <organization>Citerus</organization>
- <organizationUrl>http://www.citerus.se</organizationUrl>
- <email>peter.backlund@citerus.se</email>
- <timezone>CET</timezone>
- </developer>
- </developers>
-
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.4</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- <encoding>UTF-8</encoding>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|