forked from TheLanguageArchive/YAMS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
129 lines (127 loc) · 4.98 KB
/
pom.xml
File metadata and controls
129 lines (127 loc) · 4.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?xml version="1.0" encoding="UTF-8"?>
<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>nl.mpi</groupId>
<artifactId>yams-parent</artifactId>
<name>YAMS Parent</name>
<packaging>pom</packaging>
<version>1.0</version>
<description>Parent pom for the metadata search YAMS</description>
<modules>
<module>web</module>
<module>common</module>
<module>crawler</module>
<module>annotator</module>
<module>rest</module>
<module>yams-cs-connector</module>
</modules>
<parent>
<groupId>nl.mpi</groupId>
<artifactId>parent</artifactId>
<version>1.7.0</version>
</parent>
<!-- <scm>
<developerConnection>scm:svn:https://svn.mpi.nl/LAT/Kinnate/trunk/</developerConnection>
<url>https://trac.mpi.nl/wiki/KinOath</url>
</scm>-->
<organization>
<name>The Language Archive, Max Planck Institute for Psycholinguistics</name>
<url>http://tla.mpi.nl/tools/tla-tools</url>
</organization>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- <netbeans.hint.license>gpl20</netbeans.hint.license> this hint fails when it is in the parent pom -->
<plugin.license.copyrightYear>2013</plugin.license.copyrightYear>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.9.0</version>
<configuration>
<header>${project.parent.basedir}/license-header.txt</header>
<strictCheck>false</strictCheck>
<properties>
<year>${plugin.license.copyrightYear}</year>
<organization>${project.organization.name}</organization>
</properties>
<mapping>
<svg>XML_STYLE</svg>
<imdi>XML_STYLE</imdi>
<cmdi>XML_STYLE</cmdi>
</mapping>
<excludes>
<exclude>**/*.txt</exclude>
<exclude>**/*.icns</exclude>
<exclude>**/*.php</exclude>
<exclude>installer/**</exclude>
<exclude>**/nbactions.xml</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>nl.mpi</groupId>
<artifactId>version-control-check</artifactId>
<version>1.0.21-testing</version>
<executions>
<execution>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<verbose>true</verbose>
<vcsType>git</vcsType>
<allowSnapshots>true</allowSnapshots>
<majorVersion>1</majorVersion>
<minorVersion>0</minorVersion>
<buildType>pretesting</buildType>
<propertiesPrefix>application</propertiesPrefix>
<shortVersionModule>yams-parent</shortVersionModule>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.6</version>
</plugin>
</plugins>
</reporting>
<repositories>
<repository>
<id>MPI</id>
<name>MPI LAT Repository</name>
<url>https://lux15.mpi.nl/nexus/content/groups/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>MPI</id>
<name>MPI LAT Repository</name>
<url>https://lux15.mpi.nl/nexus/content/groups/public/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
<snapshotRepository>
<id>MPI-Snapshots</id>
<url>https://lux15.mpi.nl/nexus/content/repositories/MPI-Snapshots</url>
</snapshotRepository>
<repository>
<id>MPI</id>
<name>MPI Repository</name>
<url>https://lux15.mpi.nl/nexus/content/repositories/MPI</url>
</repository>
</distributionManagement>
</project>