|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +you may not use this file except in compliance with the License. |
| 5 | +You may obtain a copy of the License at |
| 6 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | +Unless required by applicable law or agreed to in writing, software |
| 8 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 9 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 10 | +See the License for the specific language governing permissions and |
| 11 | +limitations under the License. |
| 12 | +--> |
| 13 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 14 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 15 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 16 | + |
| 17 | + <modelVersion>4.0.0</modelVersion> |
| 18 | + <packaging>war</packaging> |
| 19 | + <version>1.0-SNAPSHOT</version> |
| 20 | + |
| 21 | + <groupId>eu.bluehawkqs</groupId> |
| 22 | + <artifactId>aviary-api</artifactId> |
| 23 | + |
| 24 | + <dependencies> |
| 25 | + <dependency> |
| 26 | + <groupId>com.google.appengine</groupId> |
| 27 | + <artifactId>appengine-api-1.0-sdk</artifactId> |
| 28 | + <version>1.9.54</version> |
| 29 | + </dependency> |
| 30 | + <dependency> |
| 31 | + <groupId>jstl</groupId> |
| 32 | + <artifactId>jstl</artifactId> |
| 33 | + <version>1.2</version> |
| 34 | + </dependency> |
| 35 | + <dependency> |
| 36 | + <groupId>javax.servlet</groupId> |
| 37 | + <artifactId>javax.servlet-api</artifactId> |
| 38 | + <version>3.1.0</version> |
| 39 | + <type>jar</type> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>org.jetbrains.kotlin</groupId> |
| 43 | + <artifactId>kotlin-stdlib</artifactId> |
| 44 | + <version>1.1.3-2</version> |
| 45 | + </dependency> |
| 46 | + </dependencies> |
| 47 | + |
| 48 | + <build> |
| 49 | + <outputDirectory>target/${project.artifactId}-${project.version}/WEB-INF/classes</outputDirectory> |
| 50 | + <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory> |
| 51 | + <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory> |
| 52 | + <plugins> |
| 53 | + <plugin> |
| 54 | + <artifactId>kotlin-maven-plugin</artifactId> |
| 55 | + <groupId>org.jetbrains.kotlin</groupId> |
| 56 | + <version>1.1.3-2</version> |
| 57 | + <configuration/> |
| 58 | + <executions> |
| 59 | + <execution> |
| 60 | + <id>compile</id> |
| 61 | + <phase>compile</phase> |
| 62 | + <goals> |
| 63 | + <goal>compile</goal> |
| 64 | + </goals> |
| 65 | + </execution> |
| 66 | + <execution> |
| 67 | + <id>test-compile</id> |
| 68 | + <phase>test-compile</phase> |
| 69 | + <goals> |
| 70 | + <goal>test-compile</goal> |
| 71 | + </goals> |
| 72 | + </execution> |
| 73 | + </executions> |
| 74 | + </plugin> |
| 75 | + <plugin> |
| 76 | + <groupId>org.apache.maven.plugins</groupId> |
| 77 | + <artifactId>maven-war-plugin</artifactId> |
| 78 | + <version>2.3</version> |
| 79 | + <configuration> |
| 80 | + <archiveClasses>true</archiveClasses> |
| 81 | + <failOnMissingWebXml>false</failOnMissingWebXml> |
| 82 | + </configuration> |
| 83 | + </plugin> |
| 84 | + <!-- [START cloudplugin] --> |
| 85 | + <plugin> |
| 86 | + <groupId>com.google.cloud.tools</groupId> |
| 87 | + <artifactId>appengine-maven-plugin</artifactId> |
| 88 | + <version>1.3.1</version> |
| 89 | + <configuration> |
| 90 | + </configuration> |
| 91 | + </plugin> |
| 92 | + <!-- [END cloudplugin] --> |
| 93 | + <plugin> |
| 94 | + <artifactId>maven-compiler-plugin</artifactId> |
| 95 | + <version>3.6.1</version> |
| 96 | + <configuration> |
| 97 | + <source>1.8</source> |
| 98 | + <target>1.8</target> |
| 99 | + </configuration> |
| 100 | + </plugin> |
| 101 | + </plugins> |
| 102 | + </build> |
| 103 | + |
| 104 | +</project> |
0 commit comments