Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Independent projects versions sync / update #473

Merged
merged 1 commit into from
Jan 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions independent-projects/arc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@
<maven.compiler.target>1.8</maven.compiler.target>
<!-- Versions -->
<version.cdi>2.0.SP1</version.cdi>
<version.jandex>2.1.0.Beta1</version.jandex>
<version.jandex>2.1.0.Beta3</version.jandex>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe 2.1.0.Final is out now

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Goal of this PR is to get in sync with build-parent - https://github.com/jbossas/protean-shamrock/blob/master/build-parent/pom.xml#L27

https://github.com/wildfly/jandex/releases has .Final tagged 2 days ago
I will create followup PR for build-parent/gizmo/arc to move to .Final once this gets merged

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#495 for Jandex update

<version.junit4>4.12</version.junit4>
<version.maven>3.5.2</version.maven>
<version.jboss-logging>3.3.2.Final</version.jboss-logging>
<version.javax-annotation>1.3</version.javax-annotation>
<version.javax-annotation>1.3.2</version.javax-annotation>
<version.gizmo>1.0.0.Alpha1-SNAPSHOT</version.gizmo>
<version.jpa>2.2</version.jpa>
</properties>
Expand Down
12 changes: 9 additions & 3 deletions independent-projects/gizmo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,21 +35,27 @@
<name>Gizmo</name>
<version>1.0.0.Alpha1-SNAPSHOT</version>

<properties>
<version.asm>6.2.1</version.asm>
<version.jandex>2.1.0.Beta3</version.jandex>
<version.junit>4.12</version.junit>
</properties>

<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>6.2.1</version>
<version>${version.asm}</version>
</dependency>
<dependency>
<groupId>org.jboss</groupId>
<artifactId>jandex</artifactId>
<version>2.0.5.Final</version>
<version>${version.jandex}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<version>${version.junit}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
23 changes: 13 additions & 10 deletions independent-projects/hibernate-orm-protean/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,14 @@

<!-- Dependency versions -->

<version.org.postgresql.jdbc>42.2.5</version.org.postgresql.jdbc>
<version.junit>4.12</version.junit>
<version.org.hibernate>5.4.0-protean-0.0.1</version.org.hibernate>
<version.org.hibernate.tooling>5.3.6.Final</version.org.hibernate.tooling>
<version.org.hibernate.tooling>5.4.0.Final</version.org.hibernate.tooling>
<version.jakarta-activation>1.2.1</version.jakarta-activation>
<version.jboss-transaction-api_1.2_spec>1.1.1.Final</version.jboss-transaction-api_1.2_spec>
<version.antlr>2.7.7.redhat-7</version.antlr>
<version.dom4j>1.6.1.redhat-7</version.dom4j>
<version.hibernate-commons-annotations>5.1.0.Final</version.hibernate-commons-annotations>
<version.graal-annotations>1.0.0-rc4</version.graal-annotations>

<!-- Build settings -->

Expand All @@ -52,23 +55,23 @@
<dependency>
<groupId>org.jboss.spec.javax.transaction</groupId>
<artifactId>jboss-transaction-api_1.2_spec</artifactId>
<version>1.1.1.Final</version>
<version>${version.jboss-transaction-api_1.2_spec}</version>
</dependency>
<!-- Override ANTLR with the Red Hat build as the Maven Central version is compiled with a too old JDK to allow CDS -->
<dependency>
<groupId>antlr</groupId>
<artifactId>antlr</artifactId>
<version>2.7.7.redhat-7</version>
<version>${version.antlr}</version>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>1.6.1.redhat-7</version>
<version>${version.dom4j}</version>
</dependency>
<dependency>
<groupId>org.hibernate.common</groupId>
<artifactId>hibernate-commons-annotations</artifactId>
<version>5.0.5.Final</version>
<version>${version.hibernate-commons-annotations}</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down Expand Up @@ -97,7 +100,7 @@
<dependency>
<groupId>org.jboss.graalvm</groupId>
<artifactId>graal-annotations</artifactId>
<version>1.0.0-rc4</version>
<version>${version.graal-annotations}</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand All @@ -113,7 +116,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<version>3.8.0</version>
<configuration>
<!-- Use 8 to be GraalVM compatible -->
<source>8</source>
Expand All @@ -123,7 +126,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down