-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
115 lines (101 loc) · 3.18 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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.jive</groupId>
<artifactId>searchisko</artifactId>
<name>searchisko</name>
<description>Jive and Searchisko integration</description>
<url>https://github.com/jbossorg/jive-searchisko</url>
<version>9.0.0</version>
<parent>
<groupId>com.jivesoftware.maven</groupId>
<artifactId>jive-parent-pom</artifactId>
<version>9.0.2.1-0</version>
</parent>
<inceptionYear>2014</inceptionYear>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/jbossorg/jive-searchisko</connection>
<developerConnection>scm:git:ssh://github.com/jbossorg/jive-searchisko</developerConnection>
<url>https://github.com/jbossorg/jive-searchisko</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/jbossorg/jive-searchisko/issues/</url>
</issueManagement>
<developers>
<developer>
<id>lkrzyzan</id>
<name>Libor Krzyzanek</name>
<organization>Red Hat</organization>
<organizationUrl>http://www.redhat.com</organizationUrl>
<timezone>+1</timezone>
<url>https://developer.jboss.org/people/lkrzyzanek</url>
</developer>
</developers>
<properties>
<jive.min.version>${jive.version.min}</jive.min.version>
<jive.max.version>10.10.10.10</jive.max.version>
</properties>
<build>
<outputDirectory>${project.build.directory}/classes</outputDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<!--
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
</plugin>
-->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
<!-- Unpackages this Jive plugin. Used in conjunction with the -DpluginDirs= property -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
</plugin>
</plugins>
<!-- Has to be version 2.2-beta-5 otherwise developers[0] filtering doesn't work -->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-5</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>com.jivesoftware</groupId>
<artifactId>jive-core</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>${servlet.api.artifactId}</artifactId>
</dependency>
<dependency>
<groupId>org.skyscreamer</groupId>
<artifactId>jsonassert</artifactId>
<version>1.2.3</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>