Skip to content

Commit 05e424f

Browse files
committed
Added information required by sonartype
1 parent c3cab5a commit 05e424f

1 file changed

Lines changed: 74 additions & 54 deletions

File tree

pom.xml

Lines changed: 74 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -24,61 +24,27 @@
2424
<maven.version>3.3.9</maven.version>
2525
</properties>
2626

27-
<dependencies>
28-
<dependency>
29-
<groupId>org.apache.maven</groupId>
30-
<artifactId>maven-plugin-api</artifactId>
31-
<version>${maven.version}</version>
32-
<scope>provided</scope>
33-
</dependency>
34-
<dependency>
35-
<groupId>org.apache.maven</groupId>
36-
<artifactId>maven-core</artifactId>
37-
<version>${maven.version}</version>
38-
<scope>provided</scope>
39-
</dependency>
40-
<dependency>
41-
<groupId>org.apache.maven</groupId>
42-
<artifactId>maven-artifact</artifactId>
43-
<version>${maven.version}</version>
44-
<scope>provided</scope>
45-
</dependency>
46-
<dependency>
47-
<groupId>org.apache.maven</groupId>
48-
<artifactId>maven-compat</artifactId>
49-
<version>${maven.version}</version>
50-
<scope>test</scope>
51-
</dependency>
52-
<dependency>
53-
<groupId>org.apache.maven.plugin-tools</groupId>
54-
<artifactId>maven-plugin-annotations</artifactId>
55-
<version>3.6.0</version>
56-
<scope>provided</scope>
57-
</dependency>
58-
<dependency>
59-
<groupId>commons-io</groupId>
60-
<artifactId>commons-io</artifactId>
61-
<version>2.11.0</version>
62-
</dependency>
63-
<dependency>
64-
<groupId>io.swagger.parser.v3</groupId>
65-
<artifactId>swagger-parser-v3</artifactId>
66-
<version>2.0.27</version>
67-
</dependency>
68-
<dependency>
69-
<groupId>junit</groupId>
70-
<artifactId>junit</artifactId>
71-
<version>4.12</version>
72-
<scope>test</scope>
73-
</dependency>
74-
<dependency>
75-
<groupId>org.apache.maven.plugin-testing</groupId>
76-
<artifactId>maven-plugin-testing-harness</artifactId>
77-
<version>3.3.0</version>
78-
<scope>test</scope>
79-
</dependency>
80-
</dependencies>
27+
<licenses>
28+
<license>
29+
<name>MIT License</name>
30+
<url>http://www.opensource.org/licenses/mit-license.php</url>
31+
</license>
32+
</licenses>
33+
34+
<developers>
35+
<developer>
36+
<name>Sascha Homeier</name>
37+
<email>sascha.homeier@gmail.com</email>
38+
<organization>Github SHomeier</organization>
39+
<organizationUrl>https://github.com/shomeier</organizationUrl>
40+
</developer>
41+
</developers>
8142

43+
<scm>
44+
<connection>scm:git:git://github.com/shomeier/openapi-util-maven-plugin.git</connection>
45+
<developerConnection>scm:git:ssh://github.com/shomeier/openapi-util-maven-plugin.git</developerConnection>
46+
<url>https://github.com/shomeier/openapi-util-maven-plugin/tree/master</url>
47+
</scm>
8248
<distributionManagement>
8349
<snapshotRepository>
8450
<id>ossrh</id>
@@ -275,4 +241,58 @@
275241
</build>
276242
</profile>
277243
</profiles>
244+
<dependencies>
245+
<dependency>
246+
<groupId>org.apache.maven</groupId>
247+
<artifactId>maven-plugin-api</artifactId>
248+
<version>${maven.version}</version>
249+
<scope>provided</scope>
250+
</dependency>
251+
<dependency>
252+
<groupId>org.apache.maven</groupId>
253+
<artifactId>maven-core</artifactId>
254+
<version>${maven.version}</version>
255+
<scope>provided</scope>
256+
</dependency>
257+
<dependency>
258+
<groupId>org.apache.maven</groupId>
259+
<artifactId>maven-artifact</artifactId>
260+
<version>${maven.version}</version>
261+
<scope>provided</scope>
262+
</dependency>
263+
<dependency>
264+
<groupId>org.apache.maven</groupId>
265+
<artifactId>maven-compat</artifactId>
266+
<version>${maven.version}</version>
267+
<scope>test</scope>
268+
</dependency>
269+
<dependency>
270+
<groupId>org.apache.maven.plugin-tools</groupId>
271+
<artifactId>maven-plugin-annotations</artifactId>
272+
<version>3.6.0</version>
273+
<scope>provided</scope>
274+
</dependency>
275+
<dependency>
276+
<groupId>commons-io</groupId>
277+
<artifactId>commons-io</artifactId>
278+
<version>2.11.0</version>
279+
</dependency>
280+
<dependency>
281+
<groupId>io.swagger.parser.v3</groupId>
282+
<artifactId>swagger-parser-v3</artifactId>
283+
<version>2.0.27</version>
284+
</dependency>
285+
<dependency>
286+
<groupId>junit</groupId>
287+
<artifactId>junit</artifactId>
288+
<version>4.12</version>
289+
<scope>test</scope>
290+
</dependency>
291+
<dependency>
292+
<groupId>org.apache.maven.plugin-testing</groupId>
293+
<artifactId>maven-plugin-testing-harness</artifactId>
294+
<version>3.3.0</version>
295+
<scope>test</scope>
296+
</dependency>
297+
</dependencies>
278298
</project>

0 commit comments

Comments
 (0)