common
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>at.unbounded</groupId>
<artifactId>common</artifactId>
<version>0.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>at.unbounded</groupId>
<artifactId>common</artifactId>
<version>0.2.0</version>
<name>Unbounded Common</name>
<packaging>bundle</packaging>
<description>Event, I/O, Mathematic, Network, Reflection</description>
<url>https://unbounded.at</url>
<licenses>
<license>
<name>Creative Commons Attribution-NoDerivatives 4.0 International Public License</name>
<url>http://creativecommons.org/licenses/by-nd/4.0/legalcode</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>kludwig</id>
<name>Kevin Ludwig</name>
<email>icronace@outlook.com</email>
<organization>Icronace</organization>
<organizationUrl>https://icronace.com</organizationUrl>
<timezone>Europe/Berlin</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/Icronace/unbounded-common.git</connection>
<developerConnection>scm:git:git@github.com:Icronace/unbounded-common.git</developerConnection>
<url>https://github.com/Icronace/unbounded-common</url>
</scm>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
<extensions>true</extensions>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
<configuration>
<instructions>
<Export-Package>at.unbounded.*</Export-Package>
<Import-Package></Import-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/AngleTest.java</exclude>
<exclude>**/MatrixTest.java</exclude>
<exclude>**/VectorTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>