Skip to content

Commit d133ac2

Browse files
committed
v1.10.2-multiple text finders
1 parent cde3c22 commit d133ac2

File tree

1 file changed

+46
-22
lines changed

1 file changed

+46
-22
lines changed

pom.xml

Lines changed: 46 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,40 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<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">
3-
<modelVersion>4.0.0</modelVersion>
4-
<parent>
5-
<groupId>org.jenkins-ci.plugins</groupId>
6-
<artifactId>plugin</artifactId>
7-
<version>1.480</version>
8-
</parent>
9-
10-
<artifactId>text-finder</artifactId>
11-
<packaging>hpi</packaging>
12-
<version>1.10.1</version>
13-
<name>Jenkins TextFinder plugin</name>
14-
<url>http://wiki.jenkins-ci.org/display/JENKINS/Text-finder+Plugin</url>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<build>
6+
<plugins>
7+
<plugin>
8+
<groupId>org.apache.maven.plugins</groupId>
9+
<artifactId>maven-compiler-plugin</artifactId>
10+
<configuration>
11+
<source>1.7</source>
12+
<target>1.7</target>
13+
</configuration>
14+
</plugin>
15+
</plugins>
16+
</build>
17+
<parent>
18+
<groupId>org.jenkins-ci.plugins</groupId>
19+
<artifactId>plugin</artifactId>
20+
<version>1.645</version>
21+
</parent>
22+
23+
<artifactId>text-finder</artifactId>
24+
<packaging>hpi</packaging>
25+
<version>1.10.2</version>
26+
<name>Jenkins TextFinder plugin</name>
27+
<url>http://wiki.jenkins-ci.org/display/JENKINS/Text-finder+Plugin</url>
1528

16-
<developers>
17-
<developer>
18-
<id>kohsuke</id>
19-
<name>Kohsuke Kawaguchi</name>
20-
</developer>
21-
<developer>
22-
<name>Santiago Pericas-Geertsen</name>
23-
</developer>
24-
</developers>
29+
<developers>
30+
<developer>
31+
<id>kohsuke</id>
32+
<name>Kohsuke Kawaguchi</name>
33+
</developer>
34+
<developer>
35+
<name>Santiago Pericas-Geertsen</name>
36+
</developer>
37+
</developers>
2538
<scm>
2639
<connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
2740
<developerConnection>scm:git:[email protected]:jenkinsci/${project.artifactId}-plugin.git</developerConnection>
@@ -41,6 +54,17 @@
4154
<url>http://repo.jenkins-ci.org/public/</url>
4255
</pluginRepository>
4356
</pluginRepositories>
57+
58+
<dependencies>
59+
<dependency>
60+
<groupId>org.jenkins-ci.main</groupId>
61+
<artifactId>jenkins-war</artifactId>
62+
<type>war</type>
63+
<version>1.645</version>
64+
<scope>test</scope>
65+
</dependency>
66+
</dependencies>
67+
4468
</project>
4569

4670

0 commit comments

Comments
 (0)