|
6 | 6 | <parent> |
7 | 7 | <groupId>org.jqassistant.contrib.common</groupId> |
8 | 8 | <artifactId>parent</artifactId> |
9 | | - <version>1.7.0</version> |
| 9 | + <version>1.8.0</version> |
10 | 10 | </parent> |
11 | 11 |
|
12 | 12 | <groupId>org.jqassistant.contrib.plugin.kieker</groupId> |
13 | 13 | <artifactId>jqa-kieker-plugin</artifactId> |
14 | | - <version>0.0.1</version> |
| 14 | + <version>1.0.0</version> |
15 | 15 |
|
16 | 16 | <name>jQAssistant Kieker Plugin</name> |
17 | | - <description>The jQAssistant plugin to scan and to analyze Kieker trace logs.</description> |
| 17 | + <description>A jQAssistant plugin to scan and to analyze Kieker trace event logs. |
| 18 | + </description> |
18 | 19 | <url>http://jqassistant.org/</url> |
19 | 20 |
|
20 | 21 | <developers> |
| 22 | + <developer> |
| 23 | + <id>richard-mueller</id> |
| 24 | + <name>Richard Müller</name> |
| 25 | + |
| 26 | + </developer> |
21 | 27 | <developer> |
22 | 28 | <id>matteo-fischer</id> |
23 | 29 | <name>Matteo Fischer</name> |
24 | 30 | </developer> |
25 | 31 | <developer> |
26 | | - <id>richard-mueller</id> |
27 | | - <name>Richard Mueller</name> |
28 | | - |
| 32 | + <id>tom-strempel</id> |
| 33 | + <name>Tom Strempel</name> |
29 | 34 | </developer> |
30 | 35 | </developers> |
31 | 36 |
|
32 | | - <scm> |
33 | | - < connection>scm:git: [email protected]:softvis-research/jqa-kieker-plugin.git</ connection> |
34 | | - < developerConnection>scm:git: [email protected]:/softvis-research/jqa-kieker-plugin.git</ developerConnection> |
35 | | - <url>https://github.com//softvis-research/jqa-kieker-plugin</url> |
36 | | - <tag>HEAD</tag> |
37 | | - </scm> |
38 | | - |
39 | 37 | <licenses> |
40 | 38 | <license> |
41 | 39 | <name>GNU General Public License, v3</name> |
42 | 40 | <url>http://www.gnu.org/licenses/gpl-3.0.html</url> |
43 | 41 | </license> |
44 | 42 | </licenses> |
45 | 43 |
|
46 | | - <properties> |
47 | | - <org.hamcrest.version>2.0.0.0</org.hamcrest.version> |
48 | | - </properties> |
| 44 | + <scm> |
| 45 | + < connection>scm:git: [email protected]:softvis-research/jqa-kieker-plugin.git</ connection> |
| 46 | + < developerConnection>scm:git: [email protected]:softvis-research/jqa-kieker-plugin.git</ developerConnection> |
| 47 | + <url>https://github.com/softvis-research/jqa-kieker-plugin.git</url> |
| 48 | + <tag>HEAD</tag> |
| 49 | + </scm> |
49 | 50 |
|
50 | 51 | <build> |
51 | 52 | <plugins> |
|
59 | 60 | </plugin> |
60 | 61 | <plugin> |
61 | 62 | <groupId>org.apache.maven.plugins</groupId> |
62 | | - <artifactId>maven-dependency-plugin</artifactId> |
63 | | - <version>3.1.1</version> |
| 63 | + <artifactId>maven-shade-plugin</artifactId> |
| 64 | + <version>3.2.2</version> |
| 65 | + <configuration> |
| 66 | + <minimizeJar>false</minimizeJar> |
| 67 | + <filters> |
| 68 | + <!-- include only necessary classes and resources from kieker to avoid SLF4J error --> |
| 69 | + <filter> |
| 70 | + <artifact>net.kieker-monitoring:kieker</artifact> |
| 71 | + <includes> |
| 72 | + <include>kieker/analysisteetime/*/**</include> |
| 73 | + <include>kieker/analysis/plugin/*/**</include> |
| 74 | + <include>kieker/common/*/**</include> |
| 75 | + </includes> |
| 76 | + </filter> |
| 77 | + </filters> |
| 78 | + <!-- exclude artifacts to avoid collisions with existing plugins in command line distribution --> |
| 79 | + <artifactSet> |
| 80 | + <excludes> |
| 81 | + <exclude>com.buschmais.jqassistant.core:*</exclude> |
| 82 | + <exclude>com.buschmais.xo:*</exclude> |
| 83 | + <exclude>javax.xml.bind:*</exclude> |
| 84 | + </excludes> |
| 85 | + </artifactSet> |
| 86 | + </configuration> |
64 | 87 | <executions> |
65 | 88 | <execution> |
66 | | - <id>copy-dependencies</id> |
67 | 89 | <phase>package</phase> |
68 | 90 | <goals> |
69 | | - <goal>copy-dependencies</goal> |
| 91 | + <goal>shade</goal> |
70 | 92 | </goals> |
71 | | - <configuration> |
72 | | - <outputDirectory>${project.build.directory}/plugin-dependencies</outputDirectory> |
73 | | - <includeScope>runtime</includeScope> |
74 | | - <prependGroupId>true</prependGroupId> |
75 | | - </configuration> |
76 | 93 | </execution> |
77 | 94 | </executions> |
78 | 95 | </plugin> |
|
81 | 98 |
|
82 | 99 | <dependencyManagement> |
83 | 100 | <dependencies> |
84 | | - <!-- jQAssistant --> |
85 | | - <!-- unit tests --> |
86 | 101 | <dependency> |
87 | 102 | <groupId>junit</groupId> |
88 | 103 | <artifactId>junit</artifactId> |
89 | 104 | <version>4.12</version> |
90 | 105 | <scope>test</scope> |
91 | 106 | </dependency> |
92 | | - <dependency> |
93 | | - <groupId>org.mockito</groupId> |
94 | | - <artifactId>mockito-core</artifactId> |
95 | | - <version>1.10.19</version> |
96 | | - <scope>test</scope> |
97 | | - </dependency> |
98 | 107 | </dependencies> |
99 | 108 | </dependencyManagement> |
100 | 109 |
|
101 | 110 | <dependencies> |
102 | 111 | <dependency> |
103 | 112 | <groupId>com.buschmais.jqassistant.plugin</groupId> |
104 | 113 | <artifactId>common</artifactId> |
105 | | - <scope>provided</scope> |
106 | 114 | </dependency> |
107 | 115 | <dependency> |
108 | 116 | <groupId>com.buschmais.jqassistant.core</groupId> |
109 | 117 | <artifactId>shared</artifactId> |
110 | | - <scope>provided</scope> |
| 118 | + <exclusions> |
| 119 | + <exclusion> |
| 120 | + <groupId>org.slf4j</groupId> |
| 121 | + <artifactId>slf4j-api</artifactId> |
| 122 | + </exclusion> |
| 123 | + </exclusions> |
111 | 124 | </dependency> |
112 | 125 | <dependency> |
113 | 126 | <groupId>com.buschmais.jqassistant.core</groupId> |
114 | 127 | <artifactId>scanner</artifactId> |
115 | | - <scope>provided</scope> |
116 | 128 | </dependency> |
117 | 129 | <dependency> |
118 | 130 | <groupId>com.buschmais.jqassistant.core</groupId> |
119 | 131 | <artifactId>report</artifactId> |
120 | | - <scope>provided</scope> |
121 | 132 | </dependency> |
122 | 133 | <dependency> |
123 | 134 | <groupId>com.buschmais.jqassistant.core</groupId> |
124 | 135 | <artifactId>plugin</artifactId> |
125 | | - <scope>provided</scope> |
126 | 136 | </dependency> |
127 | 137 | <dependency> |
128 | 138 | <groupId>com.buschmais.jqassistant.plugin</groupId> |
|
134 | 144 | <groupId>com.buschmais.jqassistant.core</groupId> |
135 | 145 | <artifactId>store</artifactId> |
136 | 146 | <type>test-jar</type> |
137 | | - <scope>provided</scope> |
138 | 147 | </dependency> |
139 | 148 | <dependency> |
140 | 149 | <groupId>com.buschmais.jqassistant.core</groupId> |
141 | 150 | <artifactId>analysis</artifactId> |
142 | 151 | <type>test-jar</type> |
143 | | - <scope>provided</scope> |
144 | 152 | </dependency> |
145 | 153 | <dependency> |
146 | 154 | <groupId>com.buschmais.xo</groupId> |
|
152 | 160 | <artifactId>neo4jv3</artifactId> |
153 | 161 | <scope>test</scope> |
154 | 162 | </dependency> |
| 163 | + <dependency> |
| 164 | + <groupId>org.junit.jupiter</groupId> |
| 165 | + <artifactId>junit-jupiter-engine</artifactId> |
| 166 | + </dependency> |
155 | 167 | <dependency> |
156 | 168 | <groupId>org.hamcrest</groupId> |
157 | 169 | <artifactId>java-hamcrest</artifactId> |
158 | | - <version>${org.hamcrest.version}</version> |
159 | 170 | </dependency> |
160 | 171 | <dependency> |
161 | | - <groupId>junit</groupId> |
162 | | - <artifactId>junit</artifactId> |
163 | | - <scope>test</scope> |
| 172 | + <groupId>org.assertj</groupId> |
| 173 | + <artifactId>assertj-core</artifactId> |
| 174 | + </dependency> |
| 175 | + <dependency> |
| 176 | + <groupId>org.mockito</groupId> |
| 177 | + <artifactId>mockito-junit-jupiter</artifactId> |
164 | 178 | </dependency> |
165 | 179 | <dependency> |
166 | 180 | <groupId>org.slf4j</groupId> |
167 | 181 | <artifactId>slf4j-simple</artifactId> |
168 | | - <scope>provided</scope> |
169 | 182 | </dependency> |
170 | 183 | <dependency> |
171 | 184 | <groupId>net.kieker-monitoring</groupId> |
172 | 185 | <artifactId>kieker</artifactId> |
173 | | - <version>1.14-SNAPSHOT</version> |
| 186 | + <version>1.14</version> |
| 187 | + </dependency> |
| 188 | + <dependency> |
| 189 | + <groupId>org.tukaani</groupId> |
| 190 | + <artifactId>xz</artifactId> |
| 191 | + <version>1.6</version> |
| 192 | + </dependency> |
| 193 | + <dependency> |
| 194 | + <groupId>org.projectlombok</groupId> |
| 195 | + <artifactId>lombok</artifactId> |
| 196 | + <version>1.18.12</version> |
| 197 | + <scope>provided</scope> |
174 | 198 | </dependency> |
175 | 199 | </dependencies> |
176 | | - |
177 | | - <repositories> |
178 | | - <repository> |
179 | | - <id>sonatype.oss.snapshots</id> |
180 | | - <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
181 | | - </repository> |
182 | | - </repositories> |
183 | 200 | </project> |
0 commit comments