meta-runtime
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>me.bechberger</groupId>
<artifactId>meta-runtime</artifactId>
<version>0.0.1</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>me.bechberger</groupId>
<artifactId>meta-runtime</artifactId>
<packaging>jar</packaging>
<version>0.0.1</version>
<name>runtime</name>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<id>parttimenerd</id>
<name>Johannes Bechberger</name>
<email>me@mostlynerdless.de</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:parttimenerd/meta-agent.git</connection>
<developerConnection>scm:git:https://github.com/parttimenerd/meta-agent.git</developerConnection>
<url>https://github.com/parttimenerd/meta-agent</url>
</scm>
<inceptionYear>2024</inceptionYear>
<description>The runtime library for the Java instrumenter to instrument instrumenters</description>
<build>
<sourceDirectory>${project.basedir}/src/main/java/me/bechberger/meta/runtime</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<finalName>meta-runtime</finalName>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.vineflower</groupId>
<artifactId>vineflower</artifactId>
<version>1.10.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>24.1.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<properties>
<!-- skip test -->
<maven.test.skip>true</maven.test.skip>
</properties>
<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>