Skip to content

Commit

Permalink
chore(pom): complete pom informations
Browse files Browse the repository at this point in the history
  • Loading branch information
THOREL Arnaud authored and THOREL Arnaud committed Nov 14, 2023
1 parent 92ff962 commit 107ac9d
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 6 deletions.
Empty file added .github/workflows/deploy.yml
Empty file.
67 changes: 61 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@
<groupId>fr.ouestfrance.querydsl</groupId>
<artifactId>querydsl</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>querydsl</name>
<description>Unified queryDSL based on annotations</description>
<url>https://github.com/ouest-france/querydsl</url>
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/license/mit</url>
</license>
</licenses>

<developers>
<developer>
<name>Arnaud Thorel</name>
<organization>Groupe SIPA Ouest-France</organization>
<organizationUrl>https://www.ouest-france.fr/qui-sommes-nous</organizationUrl>
</developer>
</developers>

<properties>
<maven.compiler.source>17</maven.compiler.source>
Expand All @@ -14,11 +31,23 @@
</properties>

<scm>
<connection>scm:https://github.com/Ouest-France/querydsl.git</connection>
<developerConnection>scm:git:https://github.com/Ouest-France/querydsl.git</developerConnection>
<tag>querydsl-1.0.0</tag>
<connection>scm:${scm.url}</connection>
<developerConnection>scm:git:${scm.url}</developerConnection>
<url>[email protected]:ouest-france/querydsl.git</url>
<tag>HEAD</tag>
</scm>

<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>

<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down Expand Up @@ -70,9 +99,14 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.1</version>
<configuration>
<skip>true</skip>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -88,6 +122,27 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<scmCommentPrefix>[ci skip]</scmCommentPrefix>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 107ac9d

Please sign in to comment.