This repository has been archived by the owner on Aug 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
99 lines (93 loc) · 3.22 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
<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>
<artifactId>apimanager-report-tool</artifactId>
<groupId>com.github.axway-api-management-plus.report-tool</groupId>
<packaging>jar</packaging>
<version>1.0.2-SNAPSHOT</version>
<name>Axway API-Manager Report tool</name>
<description>Flexible framework to generate different reports for you API-Manager registry.</description>
<url>https://github.com/Axway-API-Management-Plus/apimanager-report-tool</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<project.scm.id>github</project.scm.id>
</properties>
<scm>
<connection>scm:git:https://github.com/Axway-API-Management-Plus/apimanager-report-tool.git</connection>
<developerConnection>scm:git:https://github.com/Axway-API-Management-Plus/apimanager-report-tool.git</developerConnection>
<url>https://github.com/Axway-API-Management-Plus/apimanager-swagger-promote</url>
<tag>@${project.version}</tag>
</scm>
<distributionManagement>
<repository>
<id>github</id>
<name>Axway-API-Management-Plus Apache Maven Packages</name>
<url>https://maven.pkg.github.com/Axway-API-Management-Plus/apimanager-report-tool</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<artifactId>axway-swagger-promote-core</artifactId>
<groupId>com.github.axway-api-management-plus.swagger-promote</groupId>
<version>1.6.4</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.6</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.15</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.9.10</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>distribution</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<finalName>apimanager-report-tool-${project.version}</finalName>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
</plugin>
</plugins>
</build>
</project>