<?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/maven-v4_0_0.xsd">
<properties>
<bundle.symbolicName>org.cytoscape.intento</bundle.symbolicName>
<bundle.namespace>org.cytoscape</bundle.namespace>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>org.cytoscape.intento</groupId>
<artifactId>Intento</artifactId>
<version>1.0</version>
<name>Intento</name>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<optimize>true</optimize>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
<!-- Generates the OSGi metadata based on the osgi.bnd file. -->
<!--
https://mvnrepository.com/artifact/org.apache.felix/maven-bundle-plugin -->
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>4.0.0</version>
<extensions>true</extensions>
<configuration>
<manifestLocation>META-INF</manifestLocation>
<instructions>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Bundle-Description>A cytoscape plugin called Intento</Bundle-Description>
<Bundle-Activator>${bundle.namespace}.intento.Intento</Bundle-Activator>
<Embed-Dependency>*;scope=!provided;groupId=!org.cytoscape</Embed-Dependency>
<!-- <Embed-Transitive>true</Embed-Transitive> -->
<Import-Package>*;resolution:=optional</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<!-- Dependencies needed to compile this project. -->
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>4.3.0</version>
</dependency>
<dependency>
<groupId>org.cytoscape</groupId>
<artifactId>service-api</artifactId>
<version>3.7.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.cytoscape</groupId>
<artifactId>swing-application-api</artifactId>
<version>3.7.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.cytoscape</groupId>
<artifactId>session-api</artifactId>
<version>3.7.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.cytoscape</groupId>
<artifactId>application-api</artifactId>
<version>3.7.0</version>
<scope>provided</scope>
</dependency>
<!--
https://mvnrepository.com/artifact/org.cytoscape/app-api -->
<dependency>
<groupId>org.cytoscape</groupId>
<artifactId>app-api</artifactId>
<version>3.7.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>pt.uminho.ceb.biosystems</groupId>
<artifactId>JBiclustGE</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>org.cytoscape</groupId>
<artifactId>model-api</artifactId>
<version>3.7.0</version>
<scope>provided</scope>
</dependency>
<!--
https://mvnrepository.com/artifact/org.projectlombok/lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.18</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.cytoscape</groupId>
<artifactId>work-api</artifactId>
<version>3.7.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.cytoscape</groupId>
<artifactId>layout-api</artifactId>
<version>3.7.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<!-- Links to the Cytoscape Maven repositories. -->
<repositories>
<repository>
<id>cytoscape_snapshots</id>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<name>Cytoscape Snapshots</name>
<url>
http://code.cytoscape.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>cytoscape_releases</id>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<name>Cytoscape Releases</name>
<url>
http://code.cytoscape.org/nexus/content/repositories/releases/</url>
</repository>
<repository>
<id>git-ornrocha</id>
<url>
https://github.com/ornrocha/thirdparty/raw/master/mvn-repo</url>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
</project>