| <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/xsd/maven-4.0.0.xsd"> |
| |
| <modelVersion>4.0.0</modelVersion> |
| |
| <groupId>eclipselink.example.mysports</groupId> |
| <artifactId>example</artifactId> |
| <version>0.0.1-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| <name>MySports (parent)</name> |
| <url>http://wiki.eclipse.org/EclipseLink/Examples/MySports</url> |
| |
| <repositories> |
| <repository> |
| <id>EclipseLink</id> |
| <url>http://download.eclipse.org/rt/eclipselink/maven.repo</url> |
| </repository> |
| </repositories> |
| |
| <properties> |
| <eclipselink.version>2.4.2-SNAPSHOT</eclipselink.version> |
| </properties> |
| |
| <modules> |
| <module>persistence</module> |
| <module>admin.services</module> |
| <module>admin.web</module> |
| <module>application</module> |
| </modules> |
| |
| <build> |
| <defaultGoal>install</defaultGoal> |
| |
| <plugins> |
| <plugin> |
| <artifactId>maven-deploy-plugin</artifactId> |
| <version>2.6</version> |
| <configuration> |
| <skip>true</skip> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| </project> |