Skip to content

Commit f8336f0

Browse files
usercompatibility dependency embedded
1 parent 515d721 commit f8336f0

File tree

3 files changed

+39
-79
lines changed

3 files changed

+39
-79
lines changed

core/assembly.xml

Lines changed: 0 additions & 47 deletions
This file was deleted.

core/pom.xml

Lines changed: 8 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -38,30 +38,6 @@
3838

3939
<build>
4040
<plugins>
41-
<plugin>
42-
<artifactId>maven-assembly-plugin</artifactId>
43-
<configuration>
44-
<archive>
45-
<index>true</index>
46-
<manifest>
47-
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
48-
</manifest>
49-
</archive>
50-
</configuration>
51-
<executions>
52-
<execution>
53-
<id>jwq-depjar</id>
54-
<phase>package</phase>
55-
<goals>
56-
<goal>single</goal>
57-
</goals>
58-
<configuration>
59-
<appendAssemblyId>false</appendAssemblyId>
60-
<descriptor>assembly.xml</descriptor>
61-
</configuration>
62-
</execution>
63-
</executions>
64-
</plugin>
6541
<plugin>
6642
<groupId>org.apache.felix</groupId>
6743
<artifactId>maven-bundle-plugin</artifactId>
@@ -72,11 +48,10 @@
7248
<Import-Package>
7349
*
7450
</Import-Package>
75-
<Export-Package/>
76-
<!-- <Export-Package> -->
77-
<!-- org.everit.jira.worklog.query.plugin.core -->
78-
<!-- </Export-Package> -->
79-
<_failok>true</_failok>
51+
<Export-Package />
52+
<Embed-Dependency>
53+
groupId=com.atlassian.usercompatibility;usercompatibility-jira
54+
</Embed-Dependency>
8055
</instructions>
8156
</configuration>
8257
</plugin>
@@ -91,9 +66,10 @@
9166
<scope>provided</scope>
9267
</dependency>
9368
<dependency>
94-
<groupId>com.atlassian.usercompatibility</groupId>
95-
<artifactId>usercompatibility-jira</artifactId>
96-
<version>0.18</version>
69+
<groupId>com.atlassian.usercompatibility</groupId>
70+
<artifactId>usercompatibility-jira</artifactId>
71+
<version>0.18</version>
72+
<scope>provided</scope>
9773
</dependency>
9874
<dependency>
9975
<groupId>com.atlassian.crowd</groupId>

pom.xml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,4 +155,35 @@
155155
</pluginRepository>
156156
</pluginRepositories>
157157

158+
<build>
159+
<pluginManagement>
160+
<plugins>
161+
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
162+
<plugin>
163+
<groupId>org.eclipse.m2e</groupId>
164+
<artifactId>lifecycle-mapping</artifactId>
165+
<version>1.0.0</version>
166+
<configuration>
167+
<lifecycleMappingMetadata>
168+
<pluginExecutions>
169+
<pluginExecution>
170+
<pluginExecutionFilter>
171+
<groupId>org.apache.maven.plugins</groupId>
172+
<artifactId>maven-dependency-plugin</artifactId>
173+
<versionRange>[2.4,)</versionRange>
174+
<goals>
175+
<goal>unpack</goal>
176+
</goals>
177+
</pluginExecutionFilter>
178+
<action>
179+
<ignore></ignore>
180+
</action>
181+
</pluginExecution>
182+
</pluginExecutions>
183+
</lifecycleMappingMetadata>
184+
</configuration>
185+
</plugin>
186+
</plugins>
187+
</pluginManagement>
188+
</build>
158189
</project>

0 commit comments

Comments
 (0)