-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add dependencies for building native-image-agent library
- Loading branch information
Showing
7 changed files
with
368 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
<?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> | ||
<parent> | ||
<groupId>org.jboss</groupId> | ||
<artifactId>jboss-parent</artifactId> | ||
<version>36</version> | ||
</parent> | ||
|
||
<groupId>org.graalvm.nativeimage</groupId> | ||
<artifactId>jvmti-agent-base</artifactId> | ||
<version>999-ASSEMBLY</version> | ||
|
||
<name>JVMTI Agent Base</name> | ||
<description>Base framework for creating a JVMTI agent</description> | ||
<url>https://github.com/graalvm/mandrel</url> | ||
<developers> | ||
<developer> | ||
<name>GraalVM Development</name> | ||
<email>[email protected]</email> | ||
<organization>Oracle Corporation</organization> | ||
<organizationUrl>http://www.graalvm.org/</organizationUrl> | ||
</developer> | ||
</developers> | ||
<licenses> | ||
<license> | ||
<name>Universal Permissive License, Version 1.0</name> | ||
<url>http://opensource.org/licenses/UPL</url> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<connection>scm:git:https://github.com/graalvm/mandrel.git</connection> | ||
<developerConnection>scm:git:[email protected]:graalvm/mandrel.git</developerConnection> | ||
<url>https://github.com/graalvm/mandrel</url> | ||
</scm> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.graalvm.nativeimage</groupId> | ||
<artifactId>jvmti-agent-base</artifactId> | ||
<version>999-SNAPSHOT</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<version>3.2.0</version> | ||
<configuration> | ||
<archive> | ||
<manifestEntries> | ||
<Implementation-Version>999</Implementation-Version> | ||
<Java-Build>${java.vm.version}</Java-Build> | ||
</manifestEntries> | ||
</archive> | ||
<descriptorRefs> | ||
<descriptorRef>jar-with-dependencies</descriptorRef> | ||
</descriptorRefs> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>make-assembly</id> <!-- this is used for inheritance merges --> | ||
<phase>package</phase> <!-- bind to the packaging phase --> | ||
<goals> | ||
<goal>single</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-enforcer-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
<?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> | ||
<parent> | ||
<groupId>org.jboss</groupId> | ||
<artifactId>jboss-parent</artifactId> | ||
<version>36</version> | ||
</parent> | ||
|
||
<groupId>org.graalvm.nativeimage</groupId> | ||
<artifactId>library-support</artifactId> | ||
<version>999-ASSEMBLY</version> | ||
|
||
<name>Library Support</name> | ||
<description>SubstrateVM basic library-support components</description> | ||
<url>https://github.com/graalvm/mandrel</url> | ||
<developers> | ||
<developer> | ||
<name>GraalVM Development</name> | ||
<email>[email protected]</email> | ||
<organization>Oracle Corporation</organization> | ||
<organizationUrl>http://www.graalvm.org/</organizationUrl> | ||
</developer> | ||
</developers> | ||
<licenses> | ||
<license> | ||
<name>Universal Permissive License, Version 1.0</name> | ||
<url>http://opensource.org/licenses/UPL</url> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<connection>scm:git:https://github.com/graalvm/mandrel.git</connection> | ||
<developerConnection>scm:git:[email protected]:graalvm/mandrel.git</developerConnection> | ||
<url>https://github.com/graalvm/mandrel</url> | ||
</scm> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.graalvm.nativeimage</groupId> | ||
<artifactId>library-support</artifactId> | ||
<version>999-SNAPSHOT</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<version>3.2.0</version> | ||
<configuration> | ||
<archive> | ||
<manifestEntries> | ||
<Implementation-Version>999</Implementation-Version> | ||
<Java-Build>${java.vm.version}</Java-Build> | ||
</manifestEntries> | ||
</archive> | ||
<descriptorRefs> | ||
<descriptorRef>jar-with-dependencies</descriptorRef> | ||
</descriptorRefs> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>make-assembly</id> <!-- this is used for inheritance merges --> | ||
<phase>package</phase> <!-- bind to the packaging phase --> | ||
<goals> | ||
<goal>single</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-enforcer-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
<?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> | ||
<parent> | ||
<groupId>org.jboss</groupId> | ||
<artifactId>jboss-parent</artifactId> | ||
<version>36</version> | ||
</parent> | ||
|
||
<groupId>org.graalvm.nativeimage</groupId> | ||
<artifactId>svm-agent</artifactId> | ||
<version>999-ASSEMBLY</version> | ||
|
||
<name>SVM Agent</name> | ||
<description>SubstrateVM native-image-agent library</description> | ||
<url>https://github.com/graalvm/mandrel</url> | ||
<developers> | ||
<developer> | ||
<name>GraalVM Development</name> | ||
<email>[email protected]</email> | ||
<organization>Oracle Corporation</organization> | ||
<organizationUrl>http://www.graalvm.org/</organizationUrl> | ||
</developer> | ||
</developers> | ||
<licenses> | ||
<license> | ||
<name>Universal Permissive License, Version 1.0</name> | ||
<url>http://opensource.org/licenses/UPL</url> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<connection>scm:git:https://github.com/graalvm/mandrel.git</connection> | ||
<developerConnection>scm:git:[email protected]:graalvm/mandrel.git</developerConnection> | ||
<url>https://github.com/graalvm/mandrel</url> | ||
</scm> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.graalvm.nativeimage</groupId> | ||
<artifactId>svm-agent</artifactId> | ||
<version>999-SNAPSHOT</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<version>3.2.0</version> | ||
<configuration> | ||
<archive> | ||
<manifestEntries> | ||
<Implementation-Version>999</Implementation-Version> | ||
<Java-Build>${java.vm.version}</Java-Build> | ||
</manifestEntries> | ||
</archive> | ||
<descriptorRefs> | ||
<descriptorRef>jar-with-dependencies</descriptorRef> | ||
</descriptorRefs> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>make-assembly</id> <!-- this is used for inheritance merges --> | ||
<phase>package</phase> <!-- bind to the packaging phase --> | ||
<goals> | ||
<goal>single</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-enforcer-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?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> | ||
|
||
<groupId>org.graalvm.nativeimage</groupId> | ||
<artifactId>jvmti-agent-base</artifactId> | ||
<version>999</version> | ||
|
||
<name>JVMTI Agent Base</name> | ||
<description>Base framework for creating a JVMTI agent</description> | ||
<url>https://github.com/graalvm/mandrel</url> | ||
<developers> | ||
<developer> | ||
<name>GraalVM Development</name> | ||
<email>[email protected]</email> | ||
<organization>Oracle Corporation</organization> | ||
<organizationUrl>http://www.graalvm.org/</organizationUrl> | ||
</developer> | ||
</developers> | ||
<licenses> | ||
<license> | ||
<name>Universal Permissive License, Version 1.0</name> | ||
<url>http://opensource.org/licenses/UPL</url> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<connection>scm:git:https://github.com/graalvm/mandrel.git</connection> | ||
<developerConnection>scm:git:[email protected]:graalvm/mandrel.git</developerConnection> | ||
<url>https://github.com/graalvm/mandrel</url> | ||
</scm> | ||
</project> |
Oops, something went wrong.