javaosc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.illposed.osc</groupId>
<artifactId>javaosc</artifactId>
<version>0.9</version>
</dependency><!--
SPDX-FileCopyrightText: 2021 Robin Vobruba <hoijui.quaero@gmail.com>
SPDX-License-Identifier: CC0-1.0
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<properties>
<!-- NOTE This works for reactor/aggregation & child module builds. -->
<root.basedir>${project.basedir}/modules/parent</root.basedir>
</properties>
<parent>
<groupId>com.illposed.osc</groupId>
<artifactId>javaosc-parent</artifactId>
<version>0.9</version>
<relativePath>modules/parent</relativePath>
</parent>
<artifactId>javaosc</artifactId>
<version>0.9</version>
<packaging>pom</packaging>
<name>JavaOSC-Aggregation</name>
<description>An Open Sound Control library implementation in Java - Aggregation</description>
<scm>
<connection>scm:git:git://github.com/hoijui/JavaOSC</connection>
<developerConnection>scm:git:git@github.com:hoijui/JavaOSC.git</developerConnection>
<url>http://github.com/hoijui/JavaOSC</url>
<tag>javaosc-0.9</tag>
</scm>
<modules>
<!-- We also need the parent here, for its SNAPSHOTs to be deployed. -->
<module>modules/parent</module>
<module>modules/core</module>
<module>modules/ui</module>
<module>modules/java-se-addons</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<!-- Do not try to deploy the Aggregation artifact. -->
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<pushChanges>false</pushChanges>
</configuration>
</plugin>
</plugins>
</build>
</project>