Skip to content

Commit

Permalink
Fix sources classifier
Browse files Browse the repository at this point in the history
Motivation:

We used the wrong classifier for sources jar

Modifications:

Fix classifier

Result:

Produce correct sources jar
  • Loading branch information
normanmaurer committed Aug 23, 2024
1 parent 12f28aa commit 1f6ace0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions boringssl-static/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@
</execution>
<!-- We must generate a -source JAR file to publish on Maven Central -->
<execution>
<id>source-jar</id>
<id>sources-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>source</classifier>
<classifier>sources</classifier>
<classesDirectory>${generatedSourcesDir}/c</classesDirectory>
</configuration>
</execution>
Expand Down
6 changes: 3 additions & 3 deletions libressl-static/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -212,15 +212,15 @@
<classesDirectory>${basedir}/javadoc</classesDirectory>
</configuration>
</execution>
<!-- We must generate a -source JAR file to publish on Maven Central -->
<!-- We must generate a -sources JAR file to publish on Maven Central -->
<execution>
<id>source-jar</id>
<id>sources-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>source</classifier>
<classifier>sources</classifier>
<classesDirectory>${generatedSourcesDir}/c</classesDirectory>
</configuration>
</execution>
Expand Down
4 changes: 2 additions & 2 deletions openssl-dynamic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -171,13 +171,13 @@
</execution>
<!-- We must generate a -source JAR file to publish on Maven Central -->
<execution>
<id>source-jar</id>
<id>sources-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>source</classifier>
<classifier>sources</classifier>
<classesDirectory>${basedir}/src/main/c</classesDirectory>
</configuration>
</execution>
Expand Down
6 changes: 3 additions & 3 deletions openssl-static/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -206,15 +206,15 @@
<classesDirectory>${basedir}/javadoc</classesDirectory>
</configuration>
</execution>
<!-- We must generate a -source JAR file to publish on Maven Central -->
<!-- We must generate a -sources JAR file to publish on Maven Central -->
<execution>
<id>source-jar</id>
<id>sources-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>source</classifier>
<classifier>sources</classifier>
<classesDirectory>${generatedSourcesDir}/c</classesDirectory>
</configuration>
</execution>
Expand Down

0 comments on commit 1f6ace0

Please sign in to comment.