-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
116 lines (116 loc) · 4.21 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
<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>
<groupId>com.bsiag.geneclipsetoc</groupId>
<artifactId>geneclipsetoc-maven-plugin</artifactId>
<version>1.0.3-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<properties>
<guava.version>15.0</guava.version>
<hamcrest.core.version>1.1</hamcrest.core.version>
<junit.version>4.8</junit.version>
<jsoup.version>1.7.2</jsoup.version>
<maven.compiler.plugin.version>3.1</maven.compiler.plugin.version>
<maven.plugin.annotations.version>3.4</maven.plugin.annotations.version>
<maven.plugin.api.version>3.0</maven.plugin.api.version>
<maven.plugin.plugin.version>3.4</maven.plugin.plugin.version>
<maven.release.plugin.version>2.5.2</maven.release.plugin.version>
<mylyn.wikitext.core.version>2.5.0.v20150522-1430</mylyn.wikitext.core.version>
<project.java.version>1.7</project.java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${maven.plugin.api.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.mylyn.docs</groupId>
<artifactId>org.eclipse.mylyn.wikitext.core</artifactId>
<version>${mylyn.wikitext.core.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>${jsoup.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>${maven.plugin.annotations.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>${hamcrest.core.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<configuration>
<source>${project.java.version}</source>
<target>${project.java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>${maven.plugin.plugin.version}</version>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>mylyn.wikitext</id>
<url>http://dl.bintray.com/jmini/maven/</url>
</repository>
</repositories>
<scm>
<connection>scm:git:https://github.com/jmini/geneclipsetoc.git</connection>
<developerConnection>scm:git:git@github.com:jmini/geneclipsetoc.git</developerConnection>
<url>https://github.com/jmini/geneclipsetoc</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<repository>
<id>bintray.jmini.maven</id>
<url>https://api.bintray.com/maven/jmini/maven/geneclipsetoc</url>
</repository>
</distributionManagement>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven.release.plugin.version}</version>
<configuration>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>