rct
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.openbase</groupId> <artifactId>rct</artifactId> <version>3.2.0</version> </dependency>
<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.openbase</groupId> <artifactId>rct</artifactId> <version>3.2.0</version> <name>RCT</name> <inceptionYear>2015</inceptionYear> <description>Remote Coordinate Transform Lib</description> <url>https://github.com/openbase/rct-java</url> <organization> <name>openbase.org</name> <url>https://github.com/openbase</url> </organization> <developers> <developer> <id>leonziegler</id> <name>Leon Ziegler</name> <email>leon.ziegler@gmail.com</email> <url>https://github.com/leonziegler</url> <organization>cit-ec</organization> <organizationUrl>https://cit-ec.de</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>+1</timezone> </developer> <developer> <id>nkoester</id> <name>Norman Köster</name> <email>nkoester@techfak.uni-bielefeld.de</email> <url>https://github.com/nkoester</url> <organization>cit-ec</organization> <organizationUrl>https://cit-ec.de</organizationUrl> <roles> <role>developer</role> </roles> <timezone>+1</timezone> </developer> <developer> <id>DivineThreepwood</id> <name>Marian Pohling</name> <email>divine@openbase.org</email> <url>https://github.com/DivineThreepwood</url> <organization>openbase.org</organization> <organizationUrl>https://github.com/openbase</organizationUrl> <roles> <role>developer</role> </roles> <timezone>+1</timezone> </developer> <developer> <id>pLeminoq</id> <name>Tamino Huxohl</name> <email>taminoh@ymail.com</email> <url>https://github.com/pLeminoq</url> <organization>openbase.org</organization> <organizationUrl>https://github.com/openbase</organizationUrl> <roles> <role>developer</role> </roles> <timezone>+1</timezone> </developer> <developer> <id>semeyerz</id> <name>Sebastian Meyer zu Borgsen</name> <email>semeyerz@techfak.uni-bielefeld.de</email> <url>https://github.com/semeyerz</url> <organization>cit-ec</organization> <organizationUrl>https://cit-ec.de</organizationUrl> <roles> <role>developer</role> </roles> <timezone>+1</timezone> </developer> </developers> <licenses> <license> <name>LGPLv3</name> <url>http://www.gnu.org/licenses/lgpl.html</url> </license> </licenses> <packaging>jar</packaging> <scm> <connection>scm:git:https://github.com/openbase/rct-java.git</connection> <developerConnection>scm:git:https://github.com/openbase/rct-java.git</developerConnection> <url>https://github.com/openbase/rct-java.git</url> <tag>v3.2.0</tag> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>${java.source.version}</source> <target>${java.target.version}</target> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>1.20</version> <configuration> <verbose>false</verbose> <licenseName>lgpl_v3</licenseName> <failOnMissingHeader>true</failOnMissingHeader> <failOnNotUptodateHeader>true</failOnNotUptodateHeader> <canUpdateCopyright>true</canUpdateCopyright> <canUpdateDescription>true</canUpdateDescription> <canUpdateLicense>true</canUpdateLicense> <roots> <root>src/main/java</root> <root>src/test</root> </roots> </configuration> <executions> <execution> <id>first</id> <goals> <goal>update-file-header</goal> </goals> <phase>process-sources</phase> </execution> <execution> <id>download-licenses</id> <goals> <goal>download-licenses</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.0</version> <configuration> <source>${java.source.version}</source> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>dev</id> <activation> <activeByDefault>false</activeByDefault> </activation> <repositories> <repository> <id>sonatype-oss-public</id> <url>https://oss.sonatype.org/content/groups/public/</url> <releases> <enabled>true</enabled> <updatePolicy>always</updatePolicy> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>always</updatePolicy> </snapshots> </repository> </repositories> </profile> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>true</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>deploy</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.target.version>1.8</java.target.version> <java.source.version>1.8</java.source.version> <dependency.openbase.jul.version>[3.2,3.3-alpha)</dependency.openbase.jul.version> <!-- <dependency.openbase.jul.version>3.2-SNAPSHOT</dependency.openbase.jul.version>--> <skipTests>false</skipTests> </properties> <dependencies> <dependency> <groupId>java3d</groupId> <artifactId>vecmath</artifactId> <version>1.3.1</version> </dependency> <dependency> <groupId>java3d</groupId> <artifactId>j3d-core</artifactId> <version>1.3.1</version> </dependency> <dependency> <groupId>org.openbase</groupId> <artifactId>jul.extension.type.processing</artifactId> <version>${dependency.openbase.jul.version}</version> </dependency> <dependency> <groupId>org.openbase</groupId> <artifactId>jul.communication.mqtt</artifactId> <version>${dependency.openbase.jul.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> </dependency> </dependencies> <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> </project>