81 lines
2.3 KiB
XML
81 lines
2.3 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>
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>linkrest</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<packaging>war</packaging>
|
|
|
|
<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-compiler-plugin</artifactId>
|
|
<version>3.5</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<version>2.6</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>
|
|
<h2.version>1.4.196</h2.version>
|
|
<jersey.version>2.25.1</jersey.version>
|
|
</properties>
|
|
</project> |