ap-loader-macos
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>me.bechberger</groupId> <artifactId>ap-loader-macos</artifactId> <version>3.0-9</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> <name>ap-loader</name> <groupId>me.bechberger</groupId> <artifactId>ap-loader-macos</artifactId> <version>3.0-9</version> <url>https://github.com/jvm-profiling-tools/ap-loader</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>parttimenerd</id> <name>Johannes Bechberger</name> <email>johannes.bechberger@sap.com</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/jvm-profiling-tools/ap-loader.git</connection> <developerConnection>scm:git:https://github.com/jvm-profiling-tools/ap-loader.git</developerConnection> <url>https://github.com/jvm-profiling-tools/ap-loader.git</url> </scm> <inceptionYear>2022</inceptionYear> <description>Packages async-profiler, including the converter and jattach, in a single JAR.</description> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.vversion>3.0</project.vversion> <project.subversion>9</project.subversion> <project.platform>macos</project.platform> <project.suffix></project.suffix> </properties> <build> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>2.5</version> <executions> <execution> <id>auto-clean</id> <phase>initialize</phase> <goals> <goal>clean</goal> </goals> <configuration> <filesets> <fileset> <directory>${basedir}/target/classes/libs</directory> </fileset> </filesets> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>exec</goal> </goals> </execution> </executions> <configuration> <executable>sh</executable> <workingDirectory>${basedir}</workingDirectory> <arguments> <argument>${basedir}/bin/copy_libs.sh</argument> <argument>${basedir}</argument> <argument>${project.vversion}-macos</argument> </arguments> <environmentVariables> <LANG>en_US</LANG> </environmentVariables> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <mainClass>one.profiler.AsyncProfilerLoader</mainClass> </manifest> <manifestEntries> <Premain-Class>one.profiler.AsyncProfilerLoader</Premain-Class> <Agent-Class>one.profiler.AsyncProfilerLoader</Agent-Class> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <addDefaultImplementationEntries>false</addDefaultImplementationEntries> <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries> <mainClass>one.profiler.AsyncProfilerLoader</mainClass> </manifest> <manifestEntries> <Built-By>Johannes Bechberger</Built-By> <Agent-Class>one.profiler.AsyncProfilerLoader</Agent-Class> <Premain-Class>one.profiler.AsyncProfilerLoader</Premain-Class> <Specification-Title>ap-loader-macos</Specification-Title> <Specification-Version>${project.version}</Specification-Version> <Implementation-Title>ap-loader-macos</Implementation-Title> <Implementation-Version>${project.version}</Implementation-Version> <Implementation-Vendor-Id>me.bechberger</Implementation-Vendor-Id> </manifestEntries> </archive> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <finalName>ap-loader-macos-${project.vversion}-${project.subversion}-full</finalName> <appendAssemblyId>false</appendAssemblyId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>copy-file</id> <phase>generate-sources</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.1</version> <executions> <execution> <id>attach-javadoc</id> <phase>deploy</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <additionalJOption>-Xdoclint:none</additionalJOption> </configuration> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> <executions> <execution> <id>default-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> </plugin> <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.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> <executions> <execution> <id>default-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> <configuration> <skip>true</skip> </configuration> </execution> <execution> <id>release</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/releases/ </url> </repository> </distributionManagement> </project>