Skip to content

Commit

Permalink
add necessary package info for deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
empwilli committed Apr 10, 2024
1 parent 5b1e788 commit 4c0c0f1
Showing 1 changed file with 67 additions and 8 deletions.
75 changes: 67 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,42 @@
<!--Note: When increasing version for new releases, adjust snippet in overview.html, as well.-->
<version>1.0.0-rc1</version>

<name>${project.groupId}:${project.artifactId}</name>
<description>Manipulate, verify and de/serialize Asset Administration Shells.</description>
<url>https://github.com/aas-core-works/aas-core3.0-java</url>

<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>

<developers>
<developer>
<name>Tobias Langer</name>
<email>tobias.langer@conplement.de</email>
<organization>conplement AG</organization>
<organizationUrl>https://www.conplement.de/</organizationUrl>
</developer>
<developer>
<name>Markus Böhm</name>
<email>markus.boehm@conplement.de</email>
<organization>conplement AG</organization>
<organizationUrl>https://www.conplement.de/</organizationUrl>
</developer>
<developer>
<name>Marko Ristin</name>
<email>marko@ristin.ch</email>
</developer>
</developers>

<scm>
<connection>scm:git:git://github.com:aas-core-works/aas-core3.0-java.git</connection>
<developerConnection>scm:git:ssh://github.com:aas-core-works/aas-core3.0-java.git</developerConnection>
<url>https://github.com/aas-core-works/aas-core3.0-java</url>
</scm>

<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
Expand Down Expand Up @@ -43,14 +79,6 @@
</dependency>
</dependencies>

<distributionManagement>
<repository>
<id>ossrh</id>
<name>Central Repository OSSRH</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -84,6 +112,19 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand All @@ -94,6 +135,14 @@
${basedir}/doc/overview.html
</overview>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -116,6 +165,16 @@
</gpgArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.4.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<tokenAuth>true</tokenAuth>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 4c0c0f1

Please sign in to comment.