Skip to content

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
updated microprofile dependency 2.0.0 and microprofile-metrics-api 2.0.0

issue imixs#510
  • Loading branch information
rsoika committed May 27, 2019
1 parent 590cb1e commit 937ad8b
Showing 1 changed file with 27 additions and 17 deletions.
44 changes: 27 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<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">
<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>org.imixs.workflow</groupId>
<artifactId>imixs-workflow</artifactId>
Expand All @@ -15,7 +17,9 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- 4.10.4, 5.5.2, 6.2.0 6.2.1 6.6.1 -->
<!-- dependency versions -->
<jakarta.version>8.0</jakarta.version>
<microprofile.version>2.2</microprofile.version>
<lucene.version>7.5.0</lucene.version>
</properties>

Expand Down Expand Up @@ -90,17 +94,17 @@

<build>
<plugins>

<!-- use JDK settings for compiling -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>

<!-- release management -->
<plugin>
Expand Down Expand Up @@ -251,16 +255,23 @@
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>8.0</version>
<version>${jakarta.version}</version>
<scope>provided</scope>
</dependency>

<!-- Microprofile -->
<dependency>
<groupId>org.eclipse.microprofile.config</groupId>
<artifactId>microprofile-config-api</artifactId>
<version>1.3</version>
<groupId>org.eclipse.microprofile</groupId>
<artifactId>microprofile</artifactId>
<version>${microprofile.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.eclipse.microprofile.metrics</groupId>
<artifactId>microprofile-metrics-api</artifactId>
<version>2.0.0</version>
</dependency>

<!-- JUnit Tests -->
<dependency>
Expand All @@ -269,14 +280,13 @@
<version>4.8.1</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>

</dependencies>


Expand Down

0 comments on commit 937ad8b

Please sign in to comment.