Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
pom.xml 1.79 KiB
<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>lcsb.mapviewer</groupId>
    <artifactId>parent</artifactId>
    <version>1.0</version>
  </parent>
  <artifactId>console</artifactId>
  <name>Console utils</name>
  
 <build>
  <plugins>
    <plugin>
      <artifactId>maven-assembly-plugin</artifactId>
      <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>
      		<configuration>
        		<descriptor>install.xml</descriptor>
  					<archive>
							<manifest>
    						<mainClass>lcsb.mapviewer.run.ConsoleConverter</mainClass>
  						</manifest>
						</archive>
      		</configuration>
    		</execution>
  		</executions>
    </plugin>
  </plugins>
</build>
	
	<dependencies>
	
	<!-- the MapViewer service -->
	
		<dependency>
			<groupId>lcsb.mapviewer</groupId>
      <artifactId>service</artifactId>
      <version>1.0</version>
    </dependency>
		
	<!-- the MapViewer reactome -->
	
		<dependency>
      <groupId>lcsb.mapviewer</groupId>
      <artifactId>reactome</artifactId>
      <version>1.0</version>
    </dependency>

	<!-- the MapViewer pathvisio-->

		<dependency>
      <groupId>lcsb.mapviewer</groupId>
      <artifactId>pathvisio</artifactId>
      <version>1.0</version>
    </dependency>

	<!-- Commons CLI by Apache -->
		<dependency>
			<groupId>commons-cli</groupId>
			<artifactId>commons-cli</artifactId>
			<version>${commons-cli.version}</version>
		</dependency>

	</dependencies>
  
</project>