Skip to content

Instantly share code, notes, and snippets.

@ghillairet
Created March 23, 2018 18:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ghillairet/4e673bc126ef76d2a3316cd215256d4d to your computer and use it in GitHub Desktop.
Save ghillairet/4e673bc126ef76d2a3316cd215256d4d to your computer and use it in GitHub Desktop.
emfjson-p2-build
<?xml version="1.0" encoding="UTF-8"?>
<site>
<bundle id="org.emfjson.jackson" version="0.0.0">
<category name="org.emfjson"/>
</bundle>
<bundle id="org.emfjson.jackson.source" version="0.0.0">
<category name="org.emfjson.sdk"/>
</bundle>
<bundle id="com.fasterxml.jackson.core.jackson-annotations" version="0.0.0">
<category name="com.fasterxml.jackson"/>
</bundle>
<bundle id="com.fasterxml.jackson.core.jackson-annotations.source" version="0.0.0">
<category name="com.fasterxml.jackson.sdk"/>
</bundle>
<bundle id="com.fasterxml.jackson.core.jackson-core" version="0.0.0">
<category name="com.fasterxml.jackson"/>
</bundle>
<bundle id="com.fasterxml.jackson.core.jackson-core.source" version="0.0.0">
<category name="com.fasterxml.jackson.sdk"/>
</bundle>
<bundle id="com.fasterxml.jackson.core.jackson-databind" version="0.0.0">
<category name="com.fasterxml.jackson"/>
</bundle>
<bundle id="com.fasterxml.jackson.core.jackson-databind.source" version="0.0.0">
<category name="com.fasterxml.jackson.sdk"/>
</bundle>
<category-def name="org.emfjson" label="emfjson bundles"/>
<category-def name="org.emfjson.sdk" label="emfjson SDK"/>
<category-def name="com.fasterxml.jackson" label="Jackson bundles"/>
<category-def name="com.fasterxml.jackson.sdk" label="Jackson SDK"/>
</site>
<?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>io.github.ghillairet</groupId>
<version>0.1.0-SNAPSHOT</version>
<artifactId>emfjson-p2-build</artifactId>
<packaging>pom</packaging>
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<maven.compiler.fork>true</maven.compiler.fork>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<emfjson-version>1.0.0</emfjson-version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.reficio</groupId>
<artifactId>p2-maven-plugin</artifactId>
<version>1.2.0-SNAPSHOT</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<pluginRepositories>
<pluginRepository>
<id>p2-maven</id>
<url>http://repo.reficio.org/maven/</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>org.reficio</groupId>
<artifactId>p2-maven-plugin</artifactId>
<executions>
<execution>
<id>default-cli</id>
<configuration>
<categoryFileURL>${project.basedir}/category.xml</categoryFileURL>
<artifacts>
<artifact>
<id>org.emfjson:emfjson-jackson:${emfjson-version}</id>
<source>true</source>
<transitive>true</transitive>
<excludes>
<exclude>org.eclipse.emf</exclude>
</excludes>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment