Skip to content

Commit

Permalink
Put info into parent pom
Browse files Browse the repository at this point in the history
  • Loading branch information
Hjort committed Feb 1, 2024
1 parent c6386e6 commit 7522a80
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 30 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
name: windows-library
path: crypto-jni\target\release\crypto_jni.dll

build-aar-library:
build-native-android:
runs-on: ubuntu-22.04
steps:
- name: Set Up Android tools
Expand All @@ -114,7 +114,7 @@ jobs:
path: ./concordium-android-sdk/native

build-and-release-jar:
needs: [build-native-ubuntu, build-native-macos, build-native-windows, build-aar-library]
needs: [build-native-ubuntu, build-native-macos, build-native-windows, build-native-android]
# Use fixed OS version because we install packages on the system.
runs-on: ubuntu-22.04
environment: release
Expand Down
3 changes: 2 additions & 1 deletion concordium-android-sdk/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
/target
/native/*
/delombok
.flattened-pom.xml
.flattened-pom.xml

27 changes: 2 additions & 25 deletions concordium-android-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,32 +17,9 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>

<name>concordium-android-sdk</name>
<description>An SDK for interacting with the Concordium blockchain packaged for Android</description>
<url>https://github.com/Concordium/concordium-java-sdk</url>

<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<developers>
<developer>
<name>Concordium Software</name>
<email>support@concordium.software</email>
<organization>Concordium Software</organization>
<organizationUrl>https://concordium.com</organizationUrl>
</developer>
</developers>

<scm>
<connection>scm:git:git://github.com:Concordium/concordium-java-sdk.git</connection>
<developerConnection>scm:git:ssh://github.com:Concordium/concordium-java-sdk.git</developerConnection>
<url>https://github.com/Concordium/concordium-java-sdk/tree/main</url>
</scm>

<dependencies>
<dependency>
Expand Down Expand Up @@ -330,4 +307,4 @@
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>
</project>
2 changes: 1 addition & 1 deletion concordium-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<artifactId>concordium-sdk</artifactId>

<name>concordium-sdk</name>
<url>https://github.com/Concordium/concordium-java-sdk</url>
<description>An SDK for interacting with the Concordium blockchain</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
26 changes: 25 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,33 @@
<version>6.0.2</version>
<packaging>pom</packaging>

<url>https://github.com/Concordium/concordium-java-sdk</url>

<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<developers>
<developer>
<name>Concordium Software</name>
<email>support@concordium.software</email>
<organization>Concordium Software</organization>
<organizationUrl>https://concordium.com</organizationUrl>
</developer>
</developers>

<scm>
<connection>scm:git:git://github.com:Concordium/concordium-java-sdk.git</connection>
<developerConnection>scm:git:ssh://github.com:Concordium/concordium-java-sdk.git</developerConnection>
<url>https://github.com/Concordium/concordium-java-sdk/tree/main</url>
</scm>

<modules>
<module>concordium-sdk</module>
<module>concordium-android-sdk</module>
<module>concordium-sdk-examples</module>
</modules>
</project>
</project>

0 comments on commit 7522a80

Please sign in to comment.