Skip to content

Commit 64df22d

Browse files
committed
jdbc-sqlite now builds sources and javadoc jars to fix release errors on maven central
1 parent 6327bf0 commit 64df22d

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

maven/sqlite-jdbc/dependency-reduced-pom.xml

+11
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,17 @@
1010
<version>8.0-SNAPSHOT</version>
1111
<build>
1212
<plugins>
13+
<plugin>
14+
<artifactId>maven-source-plugin</artifactId>
15+
<version>3.2.1</version>
16+
<executions>
17+
<execution>
18+
<goals>
19+
<goal>jar</goal>
20+
</goals>
21+
</execution>
22+
</executions>
23+
</plugin>
1324
<plugin>
1425
<artifactId>maven-shade-plugin</artifactId>
1526
<version>3.3.0</version>

maven/sqlite-jdbc/pom.xml

+14
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,20 @@
1414

1515
<build>
1616
<plugins>
17+
18+
<!-- Maven Source Plugin -->
19+
<plugin>
20+
<groupId>org.apache.maven.plugins</groupId>
21+
<artifactId>maven-source-plugin</artifactId>
22+
<version>3.2.1</version>
23+
<executions>
24+
<execution>
25+
<goals>
26+
<goal>jar</goal>
27+
</goals>
28+
</execution>
29+
</executions>
30+
</plugin>
1731
<plugin>
1832
<groupId>org.apache.maven.plugins</groupId>
1933
<artifactId>maven-shade-plugin</artifactId>
File renamed without changes.

0 commit comments

Comments
 (0)