Skip to content

Commit 326649f

Browse files
Mads HvelplundMads Hvelplund
Mads Hvelplund
authored and
Mads Hvelplund
committed
[maven-release-plugin] prepare release scientist-0.0.1
1 parent f528890 commit 326649f

File tree

1 file changed

+78
-69
lines changed

1 file changed

+78
-69
lines changed

pom.xml

+78-69
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,79 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
4-
<groupId>dk.darknight</groupId>
5-
<artifactId>scientist</artifactId>
6-
<version>0.0.1-SNAPSHOT</version>
7-
<name>Scientist for Java</name>
8-
<properties>
9-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10-
<java.version>1.7</java.version>
11-
<slf4j.version>1.7.21</slf4j.version>
12-
</properties>
13-
<dependencies>
14-
<dependency> <!-- Boilerplate -->
15-
<groupId>org.projectlombok</groupId>
16-
<artifactId>lombok</artifactId>
17-
<version>1.16.10</version>
18-
<scope>provided</scope>
19-
</dependency>
20-
<dependency> <!-- Logging -->
21-
<groupId>org.slf4j</groupId>
22-
<artifactId>slf4j-api</artifactId>
23-
<version>${slf4j.version}</version>
24-
</dependency>
25-
<dependency>
26-
<groupId>org.slf4j</groupId>
27-
<artifactId>slf4j-log4j12</artifactId>
28-
<version>${slf4j.version}</version>
29-
<scope>provided</scope>
30-
</dependency>
31-
<dependency>
32-
<groupId>log4j</groupId>
33-
<artifactId>log4j</artifactId>
34-
<version>1.2.17</version>
35-
<scope>provided</scope>
36-
</dependency>
37-
<dependency> <!-- Unit testing -->
38-
<groupId>junit</groupId>
39-
<artifactId>junit</artifactId>
40-
<version>4.12</version>
41-
<scope>test</scope>
42-
</dependency>
43-
<dependency>
44-
<groupId>org.mockito</groupId>
45-
<artifactId>mockito-core</artifactId>
46-
<version>1.8.2</version>
47-
<scope>test</scope>
48-
</dependency>
49-
<dependency> <!-- Utility classes -->
50-
<groupId>com.google.guava</groupId>
51-
<artifactId>guava</artifactId>
52-
<version>19.0</version>
53-
</dependency>
54-
</dependencies>
55-
<build>
56-
<pluginManagement>
57-
<plugins>
58-
<plugin>
59-
<groupId>org.apache.maven.plugins</groupId>
60-
<artifactId>maven-compiler-plugin</artifactId>
61-
<version>3.5.1</version>
62-
<configuration>
63-
<source>${java.version}</source>
64-
<target>${java.version}</target>
65-
</configuration>
66-
</plugin>
67-
</plugins>
68-
</pluginManagement>
69-
</build>
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>dk.darknight</groupId>
5+
<artifactId>scientist</artifactId>
6+
<version>0.0.1</version>
7+
<name>Scientist for Java</name>
8+
<properties>
9+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10+
<java.version>1.7</java.version>
11+
<slf4j.version>1.7.21</slf4j.version>
12+
</properties>
13+
<scm>
14+
<developerConnection>scm:git:https://github.com/mhvelplund/scientist.java.git</developerConnection>
15+
<tag>scientist-0.0.1</tag>
16+
</scm>
17+
<dependencies>
18+
<dependency> <!-- Boilerplate -->
19+
<groupId>org.projectlombok</groupId>
20+
<artifactId>lombok</artifactId>
21+
<version>1.16.10</version>
22+
<scope>provided</scope>
23+
</dependency>
24+
<dependency> <!-- Logging -->
25+
<groupId>org.slf4j</groupId>
26+
<artifactId>slf4j-api</artifactId>
27+
<version>${slf4j.version}</version>
28+
</dependency>
29+
<dependency>
30+
<groupId>org.slf4j</groupId>
31+
<artifactId>slf4j-log4j12</artifactId>
32+
<version>${slf4j.version}</version>
33+
<scope>provided</scope>
34+
</dependency>
35+
<dependency>
36+
<groupId>log4j</groupId>
37+
<artifactId>log4j</artifactId>
38+
<version>1.2.17</version>
39+
<scope>provided</scope>
40+
</dependency>
41+
<dependency> <!-- Unit testing -->
42+
<groupId>junit</groupId>
43+
<artifactId>junit</artifactId>
44+
<version>4.12</version>
45+
<scope>test</scope>
46+
</dependency>
47+
<dependency>
48+
<groupId>org.mockito</groupId>
49+
<artifactId>mockito-core</artifactId>
50+
<version>1.8.2</version>
51+
<scope>test</scope>
52+
</dependency>
53+
<dependency> <!-- Utility classes -->
54+
<groupId>com.google.guava</groupId>
55+
<artifactId>guava</artifactId>
56+
<version>19.0</version>
57+
</dependency>
58+
</dependencies>
59+
<build>
60+
<pluginManagement>
61+
<plugins>
62+
<plugin>
63+
<groupId>org.apache.maven.plugins</groupId>
64+
<artifactId>maven-compiler-plugin</artifactId>
65+
<version>3.5.1</version>
66+
<configuration>
67+
<source>${java.version}</source>
68+
<target>${java.version}</target>
69+
</configuration>
70+
</plugin>
71+
<plugin>
72+
<artifactId>maven-release-plugin</artifactId>
73+
<version>2.5.2</version>
74+
</plugin>
75+
76+
</plugins>
77+
</pluginManagement>
78+
</build>
7079
</project>

0 commit comments

Comments
 (0)