Skip to content
Snippets Groups Projects
Select Git revision
  • 5e8fb4be2c03ddc7e604ed8a8838c6f123d8ce69
  • master default
  • javadoc
  • gh-pages protected
  • 0.2.4
  • 0.2.2
  • 0.2.1
  • 0.2.0
  • 0.1.0
  • 0.0.3
  • 0.0.2
  • 0.0.1
12 results

pom.xml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pom.xml 5.02 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    	<modelVersion>4.0.0</modelVersion>
    	<groupId>beamline</groupId>
    	<artifactId>framework</artifactId>
    	<version>0.2.1</version>
    
    	<properties>
    		<maven.compiler.source>11</maven.compiler.source>
    		<maven.compiler.target>11</maven.compiler.target>
    
    		<sonar.organization>beamline</sonar.organization>
    		<sonar.host.url>https://sonarcloud.io</sonar.host.url>
    
    		<flink.version>1.14.3</flink.version>
    		<log4j.version>2.17.2</log4j.version>
    	</properties>
    
    	<repositories>
    		<repository>
    			<id>ApromoreCore_SupportLibs</id>
    			<name>Maven repository for JARs specific to the Apromore project</name>
    			<url>https://raw.github.com/apromore/ApromoreCore_SupportLibs/master/mvn-repo/</url>
    		</repository>
    		<repository>
    			<id>jitpack.io</id>
    			<url>https://jitpack.io</url>
    		</repository>
    	</repositories>
    
    	<dependencies>
    		<dependency>
    			<groupId>javax.xml.bind</groupId>
    			<artifactId>jaxb-api</artifactId>
    			<version>2.3.1</version>
    		</dependency>
    		<dependency>
    			<groupId>com.google.guava</groupId>
    			<artifactId>guava</artifactId>
    			<version>31.1-jre</version>
    		</dependency>
    		<dependency>
    			<groupId>org.deckfour</groupId>
    			<artifactId>openxes</artifactId>
    			<version>2.16</version>
    		</dependency>
    		<dependency>
    			<groupId>org.deckfour</groupId>
    			<artifactId>spex</artifactId>
    			<version>1.0</version>
    		</dependency>
    
    		<dependency>
    			<groupId>org.apache.logging.log4j</groupId>
    			<artifactId>log4j-core</artifactId>
    			<version>${log4j.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.apache.logging.log4j</groupId>
    			<artifactId>log4j-api</artifactId>
    			<version>${log4j.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.apache.logging.log4j</groupId>
    			<artifactId>log4j-slf4j-impl</artifactId>
    			<version>${log4j.version}</version>
    		</dependency>
    
    		<dependency>
    			<groupId>org.apache.flink</groupId>