forked from kimios/kimios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
129 lines (128 loc) · 5.17 KB
/
pom.xml
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"?>
<!--
~ Kimios - Document Management System Software
~ Copyright (C) 2012-2013 DevLib'
~
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU Affero General Public License as
~ published by the Free Software Foundation, either version 2 of the
~ License, or (at your option) any later version.
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU Affero General Public License for more details.
~ You should have received a copy of the GNU Affero General Public License
~ along with this program. If not, see <http://www.gnu.org/licenses />.
-->
<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>org.kimios</groupId>
<artifactId>kimios</artifactId>
<version>1.1-SNAPSHOT</version>
<scm>
<connection>scm:git:ssh://git@gitlab.devlib.infra/org-kimios/kimios.git</connection>
<developerConnection>scm:git:ssh://git@gitlab.devlib.infra/org-kimios/kimios.git</developerConnection>
<tag>HEAD</tag>
</scm>
<repositories>
<repository>
<id>kimios-releases</id>
<name>kimios-releases</name>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<layout>default</layout>
<url>http://maven.devlib.infra/repository/kimios-releases</url>
</repository>
<repository>
<id>kimios-internal</id>
<name>kimios-internal</name>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<layout>default</layout>
<url>http://maven.devlib.infra/repository/kimios-internal</url>
</repository>
</repositories>
<properties>
<spring.version>3.1.1.RELEASE</spring.version>
<slfj.version>1.6.2</slfj.version>
<apache.poi.version>3.9</apache.poi.version>
<lucene.version>3.6.0</lucene.version>
<hibernate.version>4.1.9.Final</hibernate.version>
<apache.pdfbox.version>1.7.1</apache.pdfbox.version>
<atomikos.version>3.8.0</atomikos.version>
<cxf.version>2.7.2</cxf.version>
<velocity.version>1.6.4</velocity.version>
<javamail.version>1.4.5</javamail.version>
<solr4j.version>3.6.1</solr4j.version>
<log4j.version>1.2.16</log4j.version>
<!-- releases properties -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<KIMIOS_VERSION>1.0-SNAPSHOT</KIMIOS_VERSION>
<releaseRepoUrl>http://maven.devlib.infra/repository/kimios-releases</releaseRepoUrl>
<snapshotRepoUrl>http://maven.devlib.infra/repository/kimios-internal</snapshotRepoUrl>
<deployRepoUrl>${releaseRepoUrl}</deployRepoUrl>
<releaseRepoId>kimios-releases</releaseRepoId>
<snapshotRepoId>kimios-internal</snapshotRepoId>
<deployRepoId>${releaseRepoId}</deployRepoId>
<isRelease>true</isRelease>
</properties>
<distributionManagement>
<snapshotRepository>
<id>kimios-internal</id>
<url>${snapshotRepoUrl}</url>
</snapshotRepository>
<repository>
<id>kimios-releases</id>
<url>${releaseRepoUrl}</url>
</repository>
</distributionManagement>
<modules>
<module>kimios-utils</module>
<module>kimios-exceptions</module>
<module>kimios-kernel</module>
<module>kimios-index</module>
<module>kimios-services</module>
<module>kimios-server-war</module>
<module>kimios-client-api</module>
<module>kimios-webclient</module>
<module>kimios-convert</module>
</modules>
<packaging>pom</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.5</version>
<configuration>
<updateReleaseInfo>true</updateReleaseInfo>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</build>
</project>