Projects DM-UPnP Packages fr.distrimind.oss.upnp.desktop:DM-UPnP-Desktop:1.5.2-STABLE
ctrl k
fr.distrimind.oss.upnp.desktop:DM-UPnP-Desktop:1.5.2-STABLE (Maven)
Packaging: jar

DM-UPnP stack for Java and Android
1. To use this package, add below to project pom.xml
<dependencies>
  <dependency>
    <groupId>fr.distrimind.oss.upnp.desktop</groupId>
    <artifactId>DM-UPnP-Desktop</artifactId>
    <version>1.5.2-STABLE</version>
  </dependency>
</dependencies>

<repositories>
  <repository>
    <id>onedev</id>
    <url>https://git.distri-mind.fr/DM-UPnP/~maven</url>
  </repository>
</repositories>
2. Also add below to $HOME/.m2/settings.xml if you want to compile project from command line
<servers>
  <server>
    <id>onedev</id>
    <!-- Make sure the account has package read permission over the project -->
    <username>onedev_account_name</username>
    <password>onedev_password_or_access_token</password>
  </server>
</servers>
3. For CI/CD job, it is more convenient to use a custom settings.xml, for instance via below code in a command step:
cat << EOF > settings.xml
<settings>
  <servers>
    <server>
      <id>onedev</id>
      <!-- Use job token as user name so that OneDev can know which build is using packages -->
      <username>@job_token@</username>
      <!-- Job secret 'access-token' should be defined in project build setting as an access token with package read permission -->
      <password>@secret:access-token@</password>
    </server>
  </servers>
</settings>
EOF

mvn --settings settings.xml clean test
Published File Size
4 MB
863 bytes
45 KB
863 bytes
49 KB
863 bytes
2 KB
863 bytes
2 KB
863 bytes
package 1 of 1
Published By
Published At
1 month ago
Total Size
4 MB
Please wait...
Page is in error, reload to recover