upgrad app-import to java 1.8 and adapt wp5 to cybertaxonomy
[cdmlib-apps.git] / app-import / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4 <!--
5 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
6 -->
7 <modelVersion>4.0.0</modelVersion>
8
9 <groupId>eu.etaxonomy</groupId>
10 <artifactId>imports</artifactId>
11 <version>4.7.0-SNAPSHOT</version>
12
13 <name>App Import</name>
14 <description>A collection of diverse imports to the EDIT CDM Platform</description>
15 <scm>
16 <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib-apps/app-import/</connection>
17 <developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib-apps/app-import/</developerConnection>
18 <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib-apps/app-import/</url>
19 </scm>
20 <properties>
21 <java.codelevel>1.8</java.codelevel>
22 </properties>
23
24 <dependencyManagement>
25 <dependencies>
26 <dependency>
27 <groupId>eu.etaxonomy</groupId>
28 <artifactId>cdmlib-parent</artifactId>
29 <version>${project.version}</version>
30 <type>pom</type>
31 <scope>import</scope>
32 </dependency>
33 </dependencies>
34 </dependencyManagement>
35
36 <build>
37 <plugins>
38 <plugin>
39 <groupId>org.apache.maven.plugins</groupId>
40 <artifactId>maven-compiler-plugin</artifactId>
41 <version>2.3.2</version>
42 <configuration>
43 <source>${java.codelevel}</source>
44 <target>${java.codelevel}</target>
45 <encoding>UTF-8</encoding>
46 </configuration>
47 </plugin>
48 </plugins>
49 </build>
50
51 <repositories>
52 <!-- the cdm internal repository -->
53 <repository>
54 <id>EditRepository</id>
55 <url>https://cybertaxonomy.eu/mavenrepo/</url>
56 </repository>
57 </repositories>
58
59 <dependencies>
60 <dependency>
61 <groupId>eu.etaxonomy</groupId>
62 <artifactId>cdmlib-io</artifactId>
63 </dependency>
64 <dependency>
65 <groupId>eu.etaxonomy</groupId>
66 <artifactId>cdmlib-test</artifactId>
67 <scope>test</scope>
68 </dependency>
69 </dependencies>
70 </project>