Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
202 changes: 101 additions & 101 deletions JGDMS/tools/classdep/pom.xml
Original file line number Diff line number Diff line change
@@ -1,102 +1,102 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (C) 2014 the original author or authors.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<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>au.net.zeus.jgdms</groupId>
<artifactId>tools</artifactId>
<version>3.1.1-SNAPSHOT</version>
</parent>
<groupId>au.net.zeus.jgdms.tools</groupId>
<artifactId>classdep</artifactId>
<name>Tool :: ClassDep</name>
<description>Tool used to analyze a set of classes and determine on what other classes
they directly or indirectly depend. Typically this tool is used to
compute the necessary and sufficient set of classes to include in a JAR
file, for use in the class path of a client or service, or for use in the
codebase of a client or service. The tool starts with a set of "root"
classes and recursively computes a dependency graph, finding all of the
classes referenced directly by the root classes, finding all of the
classes referenced in turn by those classes, and so on, until no new
classes are found or until classes that are not of interest are
found. The normal output of the tool is a list of all of the classes in
the dependency graph. The output from this command can be used as input
to the jar tool, to create a JAR file containing precisely
those classes.
</description>
<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.7</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>9.7</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Main-Class>org.apache.river.tool.ClassDep</Main-Class>
<Implementation-Version>${project.version}</Implementation-Version>
<Class-Path>asm-9.2.jar asm-commons-9.2.jar</Class-Path>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<profile>compact1</profile>
<target>8</target>
<debug>true</debug>
<optimize>true</optimize>
<encoding>UTF-8</encoding>
<meminitial>128m</meminitial>
<maxmem>1024m</maxmem>
</configuration>
</plugin>
</plugins>
</build>
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (C) 2014 the original author or authors.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<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>au.net.zeus.jgdms</groupId>
<artifactId>tools</artifactId>
<version>3.1.1-SNAPSHOT</version>
</parent>

<groupId>au.net.zeus.jgdms.tools</groupId>
<artifactId>classdep</artifactId>

<name>Tool :: ClassDep</name>
<description>Tool used to analyze a set of classes and determine on what other classes
they directly or indirectly depend. Typically this tool is used to
compute the necessary and sufficient set of classes to include in a JAR
file, for use in the class path of a client or service, or for use in the
codebase of a client or service. The tool starts with a set of "root"
classes and recursively computes a dependency graph, finding all of the
classes referenced directly by the root classes, finding all of the
classes referenced in turn by those classes, and so on, until no new
classes are found or until classes that are not of interest are
found. The normal output of the tool is a list of all of the classes in
the dependency graph. The output from this command can be used as input
to the jar tool, to create a JAR file containing precisely
those classes.
</description>

<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.7</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>9.7.1</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Main-Class>org.apache.river.tool.ClassDep</Main-Class>
<Implementation-Version>${project.version}</Implementation-Version>
<Class-Path>asm-9.2.jar asm-commons-9.2.jar</Class-Path>
</manifestEntries>
</archive>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<profile>compact1</profile>
<target>8</target>
<debug>true</debug>
<optimize>true</optimize>
<encoding>UTF-8</encoding>
<meminitial>128m</meminitial>
<maxmem>1024m</maxmem>
</configuration>
</plugin>
</plugins>
</build>
</project>