Skip to content

Commit 2f0c3f2

Browse files
authored
Merge pull request #54 from evolvedbinary/7.x.x/hotfix/dependencies
[7.x.x] Fix some small dependency issues
2 parents 9ac03d1 + 85f105e commit 2f0c3f2

File tree

6 files changed

+47
-6
lines changed

6 files changed

+47
-6
lines changed

elemental-parent/pom.xml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -590,6 +590,32 @@
590590
<id>elemental-release</id>
591591
<build>
592592
<plugins>
593+
<plugin>
594+
<groupId>org.apache.maven.plugins</groupId>
595+
<artifactId>maven-source-plugin</artifactId>
596+
<executions>
597+
<execution>
598+
<id>attach-sources</id>
599+
<phase>package</phase>
600+
<goals>
601+
<goal>jar-no-fork</goal>
602+
</goals>
603+
</execution>
604+
</executions>
605+
</plugin>
606+
<plugin>
607+
<groupId>org.apache.maven.plugins</groupId>
608+
<artifactId>maven-javadoc-plugin</artifactId>
609+
<executions>
610+
<execution>
611+
<id>attach-sources</id>
612+
<phase>package</phase>
613+
<goals>
614+
<goal>jar</goal>
615+
</goals>
616+
</execution>
617+
</executions>
618+
</plugin>
593619
<plugin>
594620
<groupId>org.apache.maven.plugins</groupId>
595621
<artifactId>maven-gpg-plugin</artifactId>

exist-core/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1770,7 +1770,6 @@ The BaseX Team. The original license statement is also included below.]]></pream
17701770
<ignoredUnusedDeclaredDependency>org.apache.logging.log4j:log4j-jul:jar:${log4j.version}</ignoredUnusedDeclaredDependency>
17711771
<ignoredUnusedDeclaredDependency>org.eclipse.angus:angus-activation:jar:${eclipse.angus-activation.version}</ignoredUnusedDeclaredDependency>
17721772
<ignoredUnusedDeclaredDependency>org.glassfish.jaxb:jaxb-runtime:jar:${jaxb.impl.version}</ignoredUnusedDeclaredDependency>
1773-
<ignoredUnusedDeclaredDependency>org.fusesource.jansi:jansi:jar:${jansi.version}</ignoredUnusedDeclaredDependency>
17741773
<ignoredUnusedDeclaredDependency>org.codelibs:nekohtml:jar:${nekohtml.version}</ignoredUnusedDeclaredDependency>
17751774
<ignoredUnusedDeclaredDependency>xml-resolver:xml-resolver:jar:1.2</ignoredUnusedDeclaredDependency>
17761775
<ignoredUnusedDeclaredDependency>org.xmlresolver:xmlresolver:jar:${xmlresolver.version}</ignoredUnusedDeclaredDependency>

extensions/indexes/ngram/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,12 @@
8686
<artifactId>xml-apis</artifactId>
8787
</dependency>
8888

89+
<dependency>
90+
<groupId>commons-io</groupId>
91+
<artifactId>commons-io</artifactId>
92+
<scope>test</scope>
93+
</dependency>
94+
8995
<dependency>
9096
<groupId>junit</groupId>
9197
<artifactId>junit</artifactId>

extensions/modules/cache/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@
8686
<artifactId>log4j-api</artifactId>
8787
</dependency>
8888

89+
<dependency>
90+
<groupId>commons-io</groupId>
91+
<artifactId>commons-io</artifactId>
92+
</dependency>
93+
8994
<dependency>
9095
<groupId>com.evolvedbinary.thirdparty.xml-apis</groupId>
9196
<artifactId>xml-apis</artifactId>

extensions/modules/compression/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,6 @@
9292
<artifactId>commons-io</artifactId>
9393
</dependency>
9494

95-
<dependency>
96-
<groupId>net.sf.xmldb-org</groupId>
97-
<artifactId>xmldb-api</artifactId>
98-
</dependency>
99-
10095
<dependency>
10196
<groupId>org.apache.logging.log4j</groupId>
10297
<artifactId>log4j-api</artifactId>
@@ -107,6 +102,11 @@
107102
<artifactId>xml-apis</artifactId>
108103
</dependency>
109104

105+
<dependency>
106+
<groupId>com.google.code.findbugs</groupId>
107+
<artifactId>jsr305</artifactId>
108+
</dependency>
109+
110110
<dependency>
111111
<groupId>junit</groupId>
112112
<artifactId>junit</artifactId>

extensions/modules/mail/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,11 @@
118118
<artifactId>commons-codec</artifactId>
119119
</dependency>
120120

121+
<dependency>
122+
<groupId>commons-io</groupId>
123+
<artifactId>commons-io</artifactId>
124+
</dependency>
125+
121126
<dependency>
122127
<groupId>org.apache.logging.log4j</groupId>
123128
<artifactId>log4j-api</artifactId>

0 commit comments

Comments
 (0)