|
1 | 1 | <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"> |
2 | 2 |
|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <groupId>com.capitalone.dashboard</groupId> |
4 | 6 | <artifactId>github-graphql-scm-collector</artifactId> |
5 | 7 | <name>${project.groupId}:${project.artifactId}</name> |
6 | 8 | <description> |
7 | 9 | Github Collector Microservice collecting stats from Github using graphql |
8 | 10 | </description> |
9 | 11 | <url>https://github.com/Hygieia/${repository.name}</url> |
10 | 12 | <packaging>jar</packaging> |
11 | | - <version>3.1.8-SNAPSHOT</version> |
| 13 | + <version>3.2.0-SNAPSHOT</version> |
12 | 14 |
|
13 | 15 | <parent> |
14 | | - <groupId>com.capitalone.dashboard</groupId> |
15 | | - <artifactId>Hygieia</artifactId> |
16 | | - <version>3.0.1</version> |
| 16 | + <groupId>org.springframework.boot</groupId> |
| 17 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 18 | + <version>1.5.22.RELEASE</version> |
17 | 19 | </parent> |
18 | 20 |
|
19 | 21 | <organization> |
|
45 | 47 | </distributionManagement> |
46 | 48 |
|
47 | 49 | <properties> |
| 50 | + <!-- Dependencies --> |
| 51 | + <com.capitalone.dashboard.core.version>3.10.0</com.capitalone.dashboard.core.version> |
| 52 | + <spring-security.version>4.2.18.RELEASE</spring-security.version> |
| 53 | + <tomcat.version>8.5.57</tomcat.version> |
| 54 | + <commons-beanutils.version>1.9.4</commons-beanutils.version> |
| 55 | + <commons-codec.version>1.14</commons-codec.version> |
| 56 | + <commons-collections4.version>4.1</commons-collections4.version> |
| 57 | + <commons-io.version>2.4</commons-io.version> |
| 58 | + <commons-lang.version>3.10</commons-lang.version> |
| 59 | + <fongo.version>2.2.0-RC2</fongo.version> |
| 60 | + <guava.version>29.0-jre</guava.version> |
| 61 | + <hibernate-validator.version>5.4.2.Final</hibernate-validator.version> |
| 62 | + <jackson.version>2.10.3</jackson.version> |
| 63 | + <jasypt.version>1.18</jasypt.version> |
| 64 | + <logback.version>1.2.3</logback.version> |
| 65 | + <mongodb.version>3.6.4</mongodb.version> |
| 66 | + <assertj.version>3.9.0</assertj.version> |
| 67 | + |
| 68 | + <!-- Plugins --> |
48 | 69 | <sonar.skip>true</sonar.skip> |
49 | 70 | <java.version>1.8</java.version> |
50 | 71 | <repository.name>hygieia-scm-github-graphql-collector</repository.name> |
51 | 72 | <apache.rat.plugin.version>0.13</apache.rat.plugin.version> |
52 | | - <bc.version>3.0.1</bc.version> |
53 | | - <com.capitalone.dashboard.core.version>3.9.5</com.capitalone.dashboard.core.version> |
54 | | - <commons.codec.version>1.14</commons.codec.version> |
55 | | - <commons.io.version>2.4</commons.io.version> |
56 | | - <commons.lang.version>3.10</commons.lang.version> |
57 | 73 | <coveralls.maven.plugin.version>4.3.0</coveralls.maven.plugin.version> |
58 | 74 | <developmentTeam>The Hygieia Team</developmentTeam> |
59 | 75 | <jacoco.maven.plugin.version>0.8.3</jacoco.maven.plugin.version> |
|
74 | 90 | <maven.project-info.version>3.0.0</maven.project-info.version> |
75 | 91 | <maven.scm.publish.plugin.version>3.0.0</maven.scm.publish.plugin.version> |
76 | 92 | <maven.site.plugin.version>3.7.1</maven.site.plugin.version> |
77 | | - <mockito.all.version>1.10.19</mockito.all.version> |
78 | | - <mongodb.version>3.6.4</mongodb.version> |
79 | | - <mongo>3.6.4</mongo> |
80 | | - <org.joda.joda-convert.version>1.8.1</org.joda.joda-convert.version> |
81 | 93 | <site.publish.url>https://github.com/Hygieia/${project.artifactId}</site.publish.url> |
82 | 94 | <site.publish.checkout.directory>site-content</site.publish.checkout.directory> |
83 | 95 | <spotbugs.plugin.version>3.1.11</spotbugs.plugin.version> |
84 | | - <svnkit.version>1.10.1</svnkit.version> |
85 | 96 | </properties> |
86 | 97 |
|
87 | 98 | <issueManagement> |
|
125 | 136 | <artifactId>core</artifactId> |
126 | 137 | <version>${com.capitalone.dashboard.core.version}</version> |
127 | 138 | </dependency> |
128 | | - <dependency> |
129 | | - <groupId>commons-io</groupId> |
130 | | - <artifactId>commons-io</artifactId> |
131 | | - <version>${commons.io.version}</version> |
132 | | - <scope>test</scope> |
133 | | - </dependency> |
134 | | - <dependency> |
135 | | - <groupId>joda-time</groupId> |
136 | | - <artifactId>joda-time</artifactId> |
137 | | - </dependency> |
138 | | - <dependency> |
139 | | - <groupId>org.apache.commons</groupId> |
140 | | - <artifactId>commons-lang3</artifactId> |
141 | | - <version>${commons.lang.version}</version> |
142 | | - </dependency> |
143 | | - <dependency> |
144 | | - <groupId>org.joda</groupId> |
145 | | - <artifactId>joda-convert</artifactId> |
146 | | - <version>${org.joda.joda-convert.version}</version> |
147 | | - <scope>provided</scope> |
148 | | - </dependency> |
149 | 139 | <dependency> |
150 | 140 | <groupId>org.springframework.boot</groupId> |
151 | 141 | <artifactId>spring-boot-starter-data-mongodb</artifactId> |
|
155 | 145 | <artifactId>spring-boot-starter-test</artifactId> |
156 | 146 | <scope>test</scope> |
157 | 147 | </dependency> |
158 | | - <dependency> |
159 | | - <groupId>org.tmatesoft.svnkit</groupId> |
160 | | - <artifactId>svnkit</artifactId> |
161 | | - <version>${svnkit.version}</version> |
162 | | - </dependency> |
163 | | - <dependency> |
164 | | - <groupId>org.mockito</groupId> |
165 | | - <artifactId>mockito-all</artifactId> |
166 | | - <version>${mockito.all.version}</version> |
167 | | - </dependency> |
168 | | - <dependency> |
169 | | - <groupId>com.googlecode.json-simple</groupId> |
170 | | - <artifactId>json-simple</artifactId> |
171 | | - </dependency> |
172 | | - <dependency> |
173 | | - <groupId>commons-codec</groupId> |
174 | | - <artifactId>commons-codec</artifactId> |
175 | | - <version>${commons.codec.version}</version> |
176 | | - </dependency> |
177 | | - <dependency> |
178 | | - <groupId>org.apache.httpcomponents</groupId> |
179 | | - <artifactId>httpclient</artifactId> |
180 | | - </dependency> |
181 | | - <dependency> |
182 | | - <groupId>org.springframework</groupId> |
183 | | - <artifactId>spring-web</artifactId> |
184 | | - </dependency> |
185 | 148 | </dependencies> |
186 | 149 |
|
187 | 150 | <build> |
|
291 | 254 | <plugin> |
292 | 255 | <groupId>com.spotify</groupId> |
293 | 256 | <artifactId>docker-maven-plugin</artifactId> |
| 257 | + <version>1.2.2</version> |
294 | 258 | <configuration> |
295 | 259 | <skipDockerBuild>false</skipDockerBuild> |
296 | 260 | <imageName>${repository.name}</imageName> <!-- keeping image name in sync with repo name--> |
|
0 commit comments