forked from AlfrescoLabs/alfresco-environment-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
189 lines (188 loc) · 6.02 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.alfresco.support</groupId>
<artifactId>alfresco-environment-validation</artifactId>
<packaging>jar</packaging>
<name>Alfresco Environment Validation Tool</name>
<description>Utility to validate Alfresco installations against pre-requisites from an environment and architecture standpoint</description>
<version>1.2-beta-4-SNAPSHOT</version> <!-- Don't forget to change package.sh every time this value changes! -->
<licenses>
<license>
<name>GNU Library or Lesser General Public License (LGPL)</name>
<url>http://www.gnu.org/licenses/lgpl.html</url>
</license>
</licenses>
<issueManagement>
<system>GoogleCode</system>
<url>https://code.google.com/p/alfresco-environment-validation/issues/list</url>
</issueManagement>
<repositories>
<repository>
<id>jboss-public</id>
<name>JBoss Public Repository</name>
<url>https://repository.jboss.org/nexus/content/groups/public</url>
</repository>
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
</repository>
</repositories>
<developers>
<developer>
<name>Peter Monks</name>
<roles>
<role>Founder</role>
<role>Developer</role>
</roles>
<email>[email protected]</email>
<organization>Alfresco Consulting</organization>
<organizationUrl>http://www.alfresco.com</organizationUrl>
</developer>
<developer>
<name>Andy Hunt</name>
<roles>
<role>Developer</role>
</roles>
<email>[email protected]</email>
<organization>Alfresco Support</organization>
<organizationUrl>http://www.alfresco.com</organizationUrl>
</developer>
<developer>
<name>Craig Tan</name>
<roles>
<role>Developer</role>
</roles>
<email>[email protected]</email>
<organization>Alfresco Support</organization>
<organizationUrl>http://www.alfresco.com</organizationUrl>
</developer>
<developer>
<name>Philippe Dubois</name>
<roles>
<role>Developer</role>
<role>Release Manager</role>
</roles>
<email>[email protected]</email>
<organization>Alfresco Support</organization>
<organizationUrl>http://www.alfresco.com</organizationUrl>
</developer>
</developers>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-webdav-jackrabbit</artifactId>
<version>2.2</version>
</extension>
</extensions>
<plugins>
<plugin>
<!-- Target an ancient JVM to try to ensure that this tool can run anywhere
that a JVM (no matter how crusty!) is installed. -->
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<!-- plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId>
<configuration> <archive> <manifest> <mainClass>Main</mainClass> </manifest>
</archive> </configuration> </plugin -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>EVT</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptor>src/assembly/bin.xml</descriptor>
<finalName>${pom.artifactId}-${pom.version}</finalName>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.2</version>
<configuration>
<goals>deploy site-deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>2.9</version>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<repository>
<id>public.repo</id>
<name>Alfresco Internal Repository</name>
<url>https://artifacts.alfresco.com/nexus/content/repositories/alfresco-public-support-releases/</url>
</repository>
<snapshotRepository>
<id>internal.repo</id>
<name>Alfresco Public Repository</name>
<url>https://artifacts.alfresco.com/nexus/content/repositories/alfresco-support-snapshots/</url>
</snapshotRepository>
<site>
<id>alfresco-artifacts</id>
<name>Alfresco Docs Public Repository</name>
<url>dav:https://artifacts.alfresco.com/nexus/content/repositories/alfresco-docs/${project.artifactId}/latest</url>
</site>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.hyperic</groupId>
<artifactId>sigar</artifactId>
<version>1.6.5.132</version>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<version>1.7</version>
</dependency>
</dependencies>
<scm>
<!-- connection>scm:hg:https://code.google.com/r/philippedubois-evt42/</connection -->
<!--developerConnection>scm:hg:https://code.google.com/r/philippedubois-evt42/</developerConnection -->
<developerConnection>scm:hg:https://code.google.com/p/alfresco-environment-validation/</developerConnection>
<!-- url>http://somerepository.com/view.cvs</url -->
</scm>
</project>