Skip to content

Commit

Permalink
Merge branch 'main' into github-workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dukke committed Apr 24, 2024
2 parents a618489 + 9ae8275 commit da44bca
Showing 1 changed file with 92 additions and 1 deletion.
93 changes: 92 additions & 1 deletion FXThemes/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@

<artifactId>fxthemes</artifactId>

<!-- *****************************************************************************************-->
<!-- MacOS X compiling step -->
<!-- *****************************************************************************************-->
<profiles>
<!-- MacOS X compiling step -->
<profile>
<id>mac</id>
<activation>
Expand Down Expand Up @@ -63,13 +65,86 @@
</profile>
</profiles>


<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<xcodeScheme>Debug</xcodeScheme>
</properties>

<build>
<plugins>

<!-- Attach sources -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<attach>true</attach>
</configuration>
</execution>
</executions>
</plugin>

<!-- Attach javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<attach>true</attach>
</configuration>
</execution>
</executions>
</plugin>

<!-- Sign -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>

<!-- Nexus Staging (uploading) -->
<!-- <plugin>-->
<!-- <groupId>org.sonatype.plugins</groupId>-->
<!-- <artifactId>nexus-staging-maven-plugin</artifactId>-->
<!-- <version>1.6.8</version>-->
<!-- <extensions>true</extensions>-->
<!-- <configuration>-->
<!-- <serverId>central</serverId>-->
<!-- <nexusUrl>https://oss.sonatype.org</nexusUrl>-->
<!-- <autoReleaseAfterClose>true</autoReleaseAfterClose>-->
<!-- </configuration>-->
<!-- </plugin>-->

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down Expand Up @@ -155,4 +230,20 @@
</dependency>
</dependencies>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
<scm>
<connection>scm:git:https://github.com/dukke/FXThemes.git</connection>
<developerConnection>scm:git:ssh://github.com/dukke/FXThemes.git</developerConnection>
<url>https://github.com/dukke/FXThemes</url>
</scm>

</project>

0 comments on commit da44bca

Please sign in to comment.