79 lines
2.8 KiB
XML
79 lines
2.8 KiB
XML
|
<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>
|
||
|
<artifactId>linkrest</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<name>linkrest</name>
|
||
|
<packaging>war</packaging>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.baeldung</groupId>
|
||
|
<artifactId>parent-modules</artifactId>
|
||
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.nhl.link.rest</groupId>
|
||
|
<artifactId>link-rest</artifactId>
|
||
|
<version>${linkrest.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.containers</groupId>
|
||
|
<artifactId>jersey-container-servlet</artifactId>
|
||
|
<version>${jersey.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||
|
<artifactId>jersey-media-moxy</artifactId>
|
||
|
<version>${jersey.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.h2database</groupId>
|
||
|
<artifactId>h2</artifactId>
|
||
|
<version>${h2.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-war-plugin</artifactId>
|
||
|
<version>${maven-war-plugin.version}</version>
|
||
|
<configuration>
|
||
|
<warSourceDirectory>WebContent</warSourceDirectory>
|
||
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.cayenne.plugins</groupId>
|
||
|
<artifactId>cayenne-maven-plugin</artifactId>
|
||
|
<version>${cayenne.version}</version>
|
||
|
|
||
|
<configuration>
|
||
|
<map>${project.basedir}/src/main/resources/linkrest.map.xml</map>
|
||
|
</configuration>
|
||
|
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>cgen</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.cayenne.plugins</groupId>
|
||
|
<artifactId>cayenne-modeler-maven-plugin</artifactId>
|
||
|
<version>${cayenne.version}</version>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<properties>
|
||
|
<linkrest.version>2.9</linkrest.version>
|
||
|
<cayenne.version>4.0.B1</cayenne.version>
|
||
|
<jersey.version>2.25.1</jersey.version>
|
||
|
</properties>
|
||
|
|
||
|
</project>
|