jitlibrary-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.tagtraum</groupId> <artifactId>jitlibrary-parent</artifactId> <version>0.9.5</version> </dependency>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.tagtraum</groupId> <version>0.9.5</version> <artifactId>jitlibrary-parent</artifactId> <packaging>pom</packaging> <name>jITLibrary Parent POM</name> <description>Parent POM for jITLibrary</description> <url>https://github.com/hendriks73/jitlibrary</url> <inceptionYear>2019</inceptionYear> <licenses> <license> <name>LGPL</name> <url>http://www.gnu.org/licenses/lgpl.txt</url> <comments>LGPL</comments> </license> </licenses> <organization> <name>tagtraum industries incorporated</name> <url>https://www.tagtraum.com/</url> </organization> <developers> <developer> <id>hendrik</id> <name>Hendrik Schreiber</name> <email>hs@tagtraum.com</email> <url>https://www.tagtraum.com/</url> <organization>tagtraum industries incorporated</organization> <organizationUrl>https://www.tagtraum.com/</organizationUrl> <roles> <role>developer</role> </roles> <timezone>+1</timezone> </developer> </developers> <modules> <module>jitlibrary-java</module> <module>jitlibrary-x86_64</module> <module>jitlibrary-aarch64</module> <module>jitlibrary</module> </modules> <dependencies> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-launcher</artifactId> <version>1.8.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.8.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <version>5.8.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.8.0</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.1.2</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>native-maven-plugin</artifactId> <version>1.0-alpha-9</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>3.0.0</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.6</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.9.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <!-- we need at least 3.6.0, so that JUnit 5 tests are run --> <version>3.6.0</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <executions> <!-- Prepares the property pointing to the JaCoCo runtime agent which is passed as VM argument when Maven the Surefire plugin is executed. --> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <!-- Ensures that the code coverage report is created after all tests have been run. --> <execution> <id>generate-report</id> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>9</source> <target>9</target> <compilerArgs> <arg>-h</arg> <arg>${project.build.directory}/native/include</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <doctitle>jITLibrary ${project.version} API</doctitle> <windowtitle>jITLibrary ${project.version} API</windowtitle> <bottom> <![CDATA[ <div class="bottomNav" style="text-align: center; margin: 0; padding: 1em; height: auto;"> <a href="${project.url}">jITLibrary</a> v${project.version}, Copyright © {inceptionYear}–{currentYear} {organizationName}. All rights reserved. </div> ]]> </bottom> <links> <link>https://docs.oracle.com/javase/9/docs/api/</link> </links> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> <version>2.2</version> </extension> </extensions> </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> <scm> <connection>scm:git:git://github.com/hendriks73/jitlibrary.git</connection> <developerConnection>scm:git:ssh://git@github.com/hendriks73/jitlibrary.git</developerConnection> <url>https://github.com/hendriks73/jitlibrary/tree/main</url> <tag>HEAD</tag> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/hendriks73/jitlibrary/issues</url> </issueManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <!-- override with -D on commandline to pass additional flags, like -DDEBUG via the cflags property --> <!-- <cflags>-DDEBUG</cflags> --> <cflags/> <arch>x86_64</arch> <isysroot>/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/ </isysroot> <mmacosx-version-min>10.7</mmacosx-version-min> <!-- Custom JDK: --> <darwin.headers.jni>${env.JAVA_HOME}/include/</darwin.headers.jni> <!-- add -DDEBUG to enable standard out debug messages --> <darwin.compiler.startoptions>${cflags} -DTARGET_OS_MAC -arch ${arch} -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -Wunused-variable -isysroot ${isysroot} -mmacosx-version-min=${mmacosx-version-min} -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -I/System/Library/Frameworks/JavaVM.framework/Headers </darwin.compiler.startoptions> <darwin.linker.startoptions> -arch ${arch} -dynamiclib -isysroot ${isysroot} -mmacosx-version-min=${mmacosx-version-min} -framework Cocoa -framework iTunesLibrary -single_module -compatibility_version 1 -current_version 1 </darwin.linker.startoptions> <!-- alias, because of http://maven.apache.org/plugins/maven-site-plugin/examples/creating-content.html#Filtering --> <projectversion>${project.version}</projectversion> </properties> <profiles> <profile> <id>release</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <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> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </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> </project>