META-INF.maven.org.jboss.classfilewriter.jboss-classfilewriter.pom.xml Maven / Gradle / Ivy
<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> <parent> <groupId>org.jboss</groupId> <artifactId>jboss-parent</artifactId> <version>24</version> </parent> <groupId>org.jboss.classfilewriter</groupId> <artifactId>jboss-classfilewriter</artifactId> <version>1.2.4.Final</version> <packaging>jar</packaging> <description>A bytecode writer that creates .class files at runtime</description> <name>classfilewriter</name> <url>https://github.com/jbossas/jboss-classfilewriter</url> <developers> <developer> <name>Stuart Douglas</name> <email>[email protected]</email> </developer> </developers> <licenses> <license> <name>Apache License, version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>once</forkMode> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>3.3.0</version> <extensions>true</extensions> <configuration> <instructions> <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> <Bundle-Version>${project.version}</Bundle-Version> <Export-Package> org.jboss.classfilewriter.*;version=${project.version} </Export-Package> </instructions> </configuration> <executions> <execution> <id>osgi-bundle</id> <goals> <goal>bundle</goal> </goals> <phase>package</phase> </execution> </executions> </plugin> </plugins> </build> <scm> <connection>scm:git:git://github.com/jbossas/jboss-classfilewriter.git</connection> <developerConnection>scm:git:[email protected]:jbossas/jboss-classfilewriter.git</developerConnection> <url>scm:git:git://github.com/jbossas/jboss-classfilewriter.git</url> </scm> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy