Commit cfa53a5df7f10838a493063d4f3131f851e0e9f5
1 parent
6414f91f
pre release 1.0.0
Showing
6 changed files
with
86 additions
and
7 deletions
nicolas-cli/pom.xml
@@ -6,7 +6,7 @@ | @@ -6,7 +6,7 @@ | ||
6 | <parent> | 6 | <parent> |
7 | <artifactId>nicolas-container</artifactId> | 7 | <artifactId>nicolas-container</artifactId> |
8 | <groupId>pl.waw.ipipan.zil.summ</groupId> | 8 | <groupId>pl.waw.ipipan.zil.summ</groupId> |
9 | - <version>1.0-SNAPSHOT</version> | 9 | + <version>1.0.0</version> |
10 | </parent> | 10 | </parent> |
11 | 11 | ||
12 | <artifactId>nicolas-cli</artifactId> | 12 | <artifactId>nicolas-cli</artifactId> |
@@ -50,6 +50,10 @@ | @@ -50,6 +50,10 @@ | ||
50 | <artifactId>slf4j-api</artifactId> | 50 | <artifactId>slf4j-api</artifactId> |
51 | </dependency> | 51 | </dependency> |
52 | <dependency> | 52 | <dependency> |
53 | + <groupId>uk.org.lidalia</groupId> | ||
54 | + <artifactId>slf4j-test</artifactId> | ||
55 | + </dependency> | ||
56 | + <dependency> | ||
53 | <groupId>org.slf4j</groupId> | 57 | <groupId>org.slf4j</groupId> |
54 | <artifactId>slf4j-simple</artifactId> | 58 | <artifactId>slf4j-simple</artifactId> |
55 | </dependency> | 59 | </dependency> |
@@ -93,6 +97,23 @@ | @@ -93,6 +97,23 @@ | ||
93 | </executions> | 97 | </executions> |
94 | </plugin> | 98 | </plugin> |
95 | 99 | ||
100 | + <plugin> | ||
101 | + <artifactId>maven-surefire-plugin</artifactId> | ||
102 | + <configuration> | ||
103 | + <classpathDependencyExcludes> | ||
104 | + <classpathDependencyExcludes>org.slf4j:slf4j-simple</classpathDependencyExcludes> | ||
105 | + </classpathDependencyExcludes> | ||
106 | + </configuration> | ||
107 | + </plugin> | ||
108 | + <plugin> | ||
109 | + <artifactId>maven-failsafe-plugin</artifactId> | ||
110 | + <configuration> | ||
111 | + <classpathDependencyExcludes> | ||
112 | + <classpathDependencyExcludes>org.slf4j:slf4j-simple</classpathDependencyExcludes> | ||
113 | + </classpathDependencyExcludes> | ||
114 | + </configuration> | ||
115 | + </plugin> | ||
116 | + | ||
96 | </plugins> | 117 | </plugins> |
97 | </build> | 118 | </build> |
98 | </project> | 119 | </project> |
99 | \ No newline at end of file | 120 | \ No newline at end of file |
nicolas-lib/pom.xml
@@ -6,7 +6,7 @@ | @@ -6,7 +6,7 @@ | ||
6 | <parent> | 6 | <parent> |
7 | <artifactId>nicolas-container</artifactId> | 7 | <artifactId>nicolas-container</artifactId> |
8 | <groupId>pl.waw.ipipan.zil.summ</groupId> | 8 | <groupId>pl.waw.ipipan.zil.summ</groupId> |
9 | - <version>1.0-SNAPSHOT</version> | 9 | + <version>1.0.0</version> |
10 | </parent> | 10 | </parent> |
11 | 11 | ||
12 | <artifactId>nicolas-lib</artifactId> | 12 | <artifactId>nicolas-lib</artifactId> |
@@ -38,6 +38,10 @@ | @@ -38,6 +38,10 @@ | ||
38 | <groupId>org.slf4j</groupId> | 38 | <groupId>org.slf4j</groupId> |
39 | <artifactId>slf4j-api</artifactId> | 39 | <artifactId>slf4j-api</artifactId> |
40 | </dependency> | 40 | </dependency> |
41 | + <dependency> | ||
42 | + <groupId>uk.org.lidalia</groupId> | ||
43 | + <artifactId>slf4j-test</artifactId> | ||
44 | + </dependency> | ||
41 | 45 | ||
42 | <!-- test --> | 46 | <!-- test --> |
43 | <dependency> | 47 | <dependency> |
@@ -50,4 +54,25 @@ | @@ -50,4 +54,25 @@ | ||
50 | <scope>test</scope> | 54 | <scope>test</scope> |
51 | </dependency> | 55 | </dependency> |
52 | </dependencies> | 56 | </dependencies> |
57 | + | ||
58 | + <build> | ||
59 | + <plugins> | ||
60 | + <plugin> | ||
61 | + <artifactId>maven-surefire-plugin</artifactId> | ||
62 | + <configuration> | ||
63 | + <classpathDependencyExcludes> | ||
64 | + <classpathDependencyExcludes>org.slf4j:slf4j-simple</classpathDependencyExcludes> | ||
65 | + </classpathDependencyExcludes> | ||
66 | + </configuration> | ||
67 | + </plugin> | ||
68 | + <plugin> | ||
69 | + <artifactId>maven-failsafe-plugin</artifactId> | ||
70 | + <configuration> | ||
71 | + <classpathDependencyExcludes> | ||
72 | + <classpathDependencyExcludes>org.slf4j:slf4j-simple</classpathDependencyExcludes> | ||
73 | + </classpathDependencyExcludes> | ||
74 | + </configuration> | ||
75 | + </plugin> | ||
76 | + </plugins> | ||
77 | + </build> | ||
53 | </project> | 78 | </project> |
54 | \ No newline at end of file | 79 | \ No newline at end of file |
nicolas-model/pom.xml
@@ -6,7 +6,7 @@ | @@ -6,7 +6,7 @@ | ||
6 | <parent> | 6 | <parent> |
7 | <artifactId>nicolas-container</artifactId> | 7 | <artifactId>nicolas-container</artifactId> |
8 | <groupId>pl.waw.ipipan.zil.summ</groupId> | 8 | <groupId>pl.waw.ipipan.zil.summ</groupId> |
9 | - <version>1.0-SNAPSHOT</version> | 9 | + <version>1.0.0</version> |
10 | </parent> | 10 | </parent> |
11 | 11 | ||
12 | <artifactId>nicolas-model</artifactId> | 12 | <artifactId>nicolas-model</artifactId> |
nicolas-multiservice/pom.xml
@@ -5,7 +5,7 @@ | @@ -5,7 +5,7 @@ | ||
5 | <parent> | 5 | <parent> |
6 | <artifactId>nicolas-container</artifactId> | 6 | <artifactId>nicolas-container</artifactId> |
7 | <groupId>pl.waw.ipipan.zil.summ</groupId> | 7 | <groupId>pl.waw.ipipan.zil.summ</groupId> |
8 | - <version>1.0-SNAPSHOT</version> | 8 | + <version>1.0.0</version> |
9 | </parent> | 9 | </parent> |
10 | <modelVersion>4.0.0</modelVersion> | 10 | <modelVersion>4.0.0</modelVersion> |
11 | 11 | ||
@@ -29,6 +29,10 @@ | @@ -29,6 +29,10 @@ | ||
29 | <groupId>org.slf4j</groupId> | 29 | <groupId>org.slf4j</groupId> |
30 | <artifactId>slf4j-api</artifactId> | 30 | <artifactId>slf4j-api</artifactId> |
31 | </dependency> | 31 | </dependency> |
32 | + <dependency> | ||
33 | + <groupId>uk.org.lidalia</groupId> | ||
34 | + <artifactId>slf4j-test</artifactId> | ||
35 | + </dependency> | ||
32 | 36 | ||
33 | <!-- test --> | 37 | <!-- test --> |
34 | <dependency> | 38 | <dependency> |
@@ -42,4 +46,25 @@ | @@ -42,4 +46,25 @@ | ||
42 | </dependency> | 46 | </dependency> |
43 | 47 | ||
44 | </dependencies> | 48 | </dependencies> |
49 | + | ||
50 | + <build> | ||
51 | + <plugins> | ||
52 | + <plugin> | ||
53 | + <artifactId>maven-surefire-plugin</artifactId> | ||
54 | + <configuration> | ||
55 | + <classpathDependencyExcludes> | ||
56 | + <classpathDependencyExcludes>org.slf4j:slf4j-simple</classpathDependencyExcludes> | ||
57 | + </classpathDependencyExcludes> | ||
58 | + </configuration> | ||
59 | + </plugin> | ||
60 | + <plugin> | ||
61 | + <artifactId>maven-failsafe-plugin</artifactId> | ||
62 | + <configuration> | ||
63 | + <classpathDependencyExcludes> | ||
64 | + <classpathDependencyExcludes>org.slf4j:slf4j-simple</classpathDependencyExcludes> | ||
65 | + </classpathDependencyExcludes> | ||
66 | + </configuration> | ||
67 | + </plugin> | ||
68 | + </plugins> | ||
69 | + </build> | ||
45 | </project> | 70 | </project> |
46 | \ No newline at end of file | 71 | \ No newline at end of file |
nicolas-train/pom.xml
@@ -6,7 +6,7 @@ | @@ -6,7 +6,7 @@ | ||
6 | <parent> | 6 | <parent> |
7 | <artifactId>nicolas-container</artifactId> | 7 | <artifactId>nicolas-container</artifactId> |
8 | <groupId>pl.waw.ipipan.zil.summ</groupId> | 8 | <groupId>pl.waw.ipipan.zil.summ</groupId> |
9 | - <version>1.0-SNAPSHOT</version> | 9 | + <version>1.0.0</version> |
10 | </parent> | 10 | </parent> |
11 | 11 | ||
12 | <artifactId>nicolas-train</artifactId> | 12 | <artifactId>nicolas-train</artifactId> |
pom.xml
@@ -6,7 +6,7 @@ | @@ -6,7 +6,7 @@ | ||
6 | 6 | ||
7 | <groupId>pl.waw.ipipan.zil.summ</groupId> | 7 | <groupId>pl.waw.ipipan.zil.summ</groupId> |
8 | <artifactId>nicolas-container</artifactId> | 8 | <artifactId>nicolas-container</artifactId> |
9 | - <version>1.0-SNAPSHOT</version> | 9 | + <version>1.0.0</version> |
10 | 10 | ||
11 | <packaging>pom</packaging> | 11 | <packaging>pom</packaging> |
12 | 12 | ||
@@ -39,7 +39,7 @@ | @@ -39,7 +39,7 @@ | ||
39 | <jcommander.version>1.64</jcommander.version> | 39 | <jcommander.version>1.64</jcommander.version> |
40 | <libthrift.version>0.9.0</libthrift.version> | 40 | <libthrift.version>0.9.0</libthrift.version> |
41 | 41 | ||
42 | - <jacoco-maven-plugin.version>0.7.8</jacoco-maven-plugin.version> | 42 | + <jacoco-maven-plugin.version>0.7.9</jacoco-maven-plugin.version> |
43 | <maven-compiler-plugin.version>3.5.1</maven-compiler-plugin.version> | 43 | <maven-compiler-plugin.version>3.5.1</maven-compiler-plugin.version> |
44 | <maven-site-plugin.version>3.5.1</maven-site-plugin.version> | 44 | <maven-site-plugin.version>3.5.1</maven-site-plugin.version> |
45 | <maven-dependency-plugin.version>3.0.0</maven-dependency-plugin.version> | 45 | <maven-dependency-plugin.version>3.0.0</maven-dependency-plugin.version> |
@@ -52,6 +52,7 @@ | @@ -52,6 +52,7 @@ | ||
52 | <maven-project-info-reports-plugin.version>2.9</maven-project-info-reports-plugin.version> | 52 | <maven-project-info-reports-plugin.version>2.9</maven-project-info-reports-plugin.version> |
53 | <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version> | 53 | <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version> |
54 | <maven-failsafe-plugin.version>2.19.1</maven-failsafe-plugin.version> | 54 | <maven-failsafe-plugin.version>2.19.1</maven-failsafe-plugin.version> |
55 | + <slf4j-test.version>1.0.0</slf4j-test.version> | ||
55 | </properties> | 56 | </properties> |
56 | 57 | ||
57 | <prerequisites> | 58 | <prerequisites> |
@@ -187,6 +188,13 @@ | @@ -187,6 +188,13 @@ | ||
187 | <version>${mockito-core.version}</version> | 188 | <version>${mockito-core.version}</version> |
188 | <scope>test</scope> | 189 | <scope>test</scope> |
189 | </dependency> | 190 | </dependency> |
191 | + <dependency> | ||
192 | + <groupId>uk.org.lidalia</groupId> | ||
193 | + <artifactId>slf4j-test</artifactId> | ||
194 | + <version>${slf4j-test.version}</version> | ||
195 | + <scope>test</scope> | ||
196 | + </dependency> | ||
197 | + | ||
190 | </dependencies> | 198 | </dependencies> |
191 | </dependencyManagement> | 199 | </dependencyManagement> |
192 | 200 |