Skip to content
Snippets Groups Projects
Select Git revision
  • d473ce34f65737477f738f8f943ceae0575763bb
  • 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
  • user avatar
    Andrea Burattin authored
    d473ce34
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pom.xml 3.28 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.1.0</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>
    	</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>29.0-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.eclipse.paho</groupId>
    			<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
    			<version>1.2.0</version>
    		</dependency>
    		<dependency>
    			<groupId>io.reactivex.rxjava3</groupId>
    			<artifactId>rxjava</artifactId>
    			<version>3.1.3</version>
    		</dependency>
    		<dependency>
    			<groupId>com.github.beamline</groupId>
    			<artifactId>graphviz</artifactId>
    			<version>master-SNAPSHOT</version>
    		</dependency>
    		<dependency>
    			<groupId>com.opencsv</groupId>
    			<artifactId>opencsv</artifactId>
    			<version>5.6</version>
    		</dependency>
    		
    		<!-- For testing only -->
    		<dependency>
    			<groupId>org.junit.jupiter</groupId>
    			<artifactId>junit-jupiter-api</artifactId>
    			<version>5.8.2</version>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.hamcrest</groupId>
    			<artifactId>hamcrest</artifactId>
    			<version>2.2</version>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.apache.activemq</groupId>
    			<artifactId>activemq-broker</artifactId>
    			<version>5.17.0</version>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.apache.activemq</groupId>
    			<artifactId>activemq-mqtt</artifactId>
    			<version>5.17.0</version>
    			<scope>test</scope>
    		</dependency>
    	</dependencies>
    
    	<build>
    		<plugins>
    			<plugin>
    				<groupId>org.apache.maven.plugins</groupId>
    				<artifactId>maven-surefire-plugin</artifactId>
    				<version>2.22.2</version>
    			</plugin>
    			<plugin>
    				<groupId>org.jacoco</groupId>
    				<artifactId>jacoco-maven-plugin</artifactId>
    				<version>0.8.7</version>
    				<executions>
    					<execution>
    						<goals>
    							<goal>prepare-agent</goal>
    						</goals>
    					</execution>
    					<execution>
    						<id>report</id>
    						<phase>test</phase>
    						<goals>
    							<goal>report</goal>
    						</goals>
    					</execution>
    				</executions>
    			</plugin>
    		</plugins>
    	</build>
    </project>