Skip to content

Instantly share code, notes, and snippets.

@jesusjavierdediego
Created December 8, 2018 17:38
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 jesusjavierdediego/42beea197fa9cf81daa9c9b4c66bae4b to your computer and use it in GitHub Desktop.
Save jesusjavierdediego/42beea197fa9cf81daa9c9b4c66bae4b to your computer and use it in GitHub Desktop.
<?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>com.fts.cp</groupId>
<artifactId>bpmn-ui</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<name>bpmn-ui</name>
<url>https://gitlab-delivery-platform.fexcofts.com/cp/bpmn-ui</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies />
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>*</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive />
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>nexus-snapshots</id>
<url>https://nexus-delivery-platform.fexcofts.com/repositories/maven-snapshots</url>
</snapshotRepository>
<repository>
<id>nexus-releases</id>
<url>https://nexus-delivery-platform.fexcofts.com/repositories/maven-releases</url>
</repository>
</distributionManagement>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment