|
1 | 1 | <?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> |
15 | 28 |
|
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> |
25 | 38 | <scm> |
26 | 39 | <connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection> |
27 | 40 | < developerConnection>scm:git: [email protected]:jenkinsci/ ${project.artifactId}-plugin.git</ developerConnection> |
|
41 | 54 | <url>http://repo.jenkins-ci.org/public/</url> |
42 | 55 | </pluginRepository> |
43 | 56 | </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 | + |
44 | 68 | </project> |
45 | 69 |
|
46 | 70 |
|
0 commit comments