forked from OpenLiberty/ci.ant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
145 lines (135 loc) · 5.07 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
<?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>
<parent>
<groupId>net.wasdev.maven.parent</groupId>
<artifactId>java7-parent</artifactId>
<version>1.4</version>
<relativePath />
</parent>
<groupId>net.wasdev.wlp.ant</groupId>
<artifactId>wlp-anttasks</artifactId>
<version>1.4-SNAPSHOT</version>
<name>WebSphere Application Server Liberty Profile Ant Tasks</name>
<description>
Parent pom for Ant tasks supporting development with
WebSphere Application Server Liberty Profile.
</description>
<url>https://wasdev.github.io</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://raw.github.com/WASdev/ci.ant/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:[email protected]:WASdev/ci.ant.git</connection>
<developerConnection>scm:git:[email protected]:WASdev/ci.ant.git</developerConnection>
<url>[email protected]:WASdev/ci.ant.git</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>jgawor</id>
<name>Jarek Gawor</name>
<email>[email protected]</email>
</developer>
</developers>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.8.4</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<configuration>
<debug>false</debug>
<goals>
<goal>install</goal>
</goals>
<projectsDirectory>src/it</projectsDirectory>
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
<setupIncludes>
<setupInclude>${project.build.directory}/it/setup/pom.xml</setupInclude>
</setupIncludes>
</configuration>
<executions>
<execution>
<id>integration-test</id>
<goals>
<goal>install</goal>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>online-its</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<configuration>
<properties>
<wlpVersion>${wlpVersion}</wlpVersion>
<wlpLicense>${wlpLicense}</wlpLicense>
</properties>
<profiles>
<profile>online-test</profile>
</profiles>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>offline-its</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<configuration>
<properties>
<wlpInstallDir>${wlpInstallDir}</wlpInstallDir>
</properties>
<profiles>
<profile>offline-test</profile>
</profiles>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>