Skip to content

Commit

Permalink
jdbc-sqlite now builds sources and javadoc jars to fix release errors…
Browse files Browse the repository at this point in the history
… on maven central
  • Loading branch information
shannah committed Aug 25, 2024
1 parent 6327bf0 commit 64df22d
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
11 changes: 11 additions & 0 deletions maven/sqlite-jdbc/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@
<version>8.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.3.0</version>
Expand Down
14 changes: 14 additions & 0 deletions maven/sqlite-jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,20 @@

<build>
<plugins>

<!-- Maven Source Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
Expand Down
File renamed without changes.

0 comments on commit 64df22d

Please sign in to comment.