vecmath
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>javax.vecmath</groupId> <artifactId>vecmath</artifactId> <version>1.5.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>javax.vecmath</groupId> <artifactId>vecmath</artifactId> <version>1.5.2</version> <packaging>jar</packaging> <name>vecmath</name> <properties> <maven.compiler.source>1.6</maven.compiler.source> <maven.compiler.target>1.6</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <description>3D Vector Math Package</description> <url>https://java.net/projects/vecmath/</url> <scm> <url>scm:svn:https://svn.java.net/svn/vecmath~svn</url> <connection>scm:svn:https://svn.java.net/svn/vecmath~svn</connection> <developerConnection>scm:svn:https://svn.java.net/svn/vecmath~svn</developerConnection> <tag>rel-1_5_2-fcs</tag> </scm> <licenses> <license> <name>GPLv2 license, includes the CLASSPATH exception</name> <url>https://java.net/projects/vecmath/sources/svn/content/trunk/COPYRIGHT.txt</url> </license> </licenses> <developers> <developer> <name>Martin W. Kirst</name> <email>maki@bitkings.de</email> <url>https://github.com/nitram509</url> <roles> <role>published to Maven Central</role> </roles> </developer> </developers> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.9</version> <executions> <execution> <id>add-test-source</id> <phase>generate-test-sources</phase> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <source>src/example/java</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.2</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>true</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.6</version> <configuration> <archive> <manifestEntries> <Specification-Title>${project.description}</Specification-Title> <Specification-Version>${project.version}</Specification-Version> <Implementation-Version>${project.version}</Implementation-Version> <Implementation-Version>${project.version}</Implementation-Version> <Extension-Name>javax.vecmath</Extension-Name> <Bundle-ManifestVersion>2</Bundle-ManifestVersion> <Bundle-Name>Vecmath Library</Bundle-Name> <Bundle-Localization>plugin</Bundle-Localization> <Bundle-SymbolicName>javax.vecmath; singleton:=true</Bundle-SymbolicName> <Bundle-Version>${project.version}</Bundle-Version> <Eclipse-AutoStart>true</Eclipse-AutoStart> <Export-Package>javax.vecmath</Export-Package> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <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>