Skip to content

Commit

Permalink
#657 - POM - drop dependency on org.springframework.boot and avaje-eb…
Browse files Browse the repository at this point in the history
…eanorm-cluster
  • Loading branch information
rbygrave committed Apr 20, 2016
1 parent 29c51ec commit 75e3b92
Showing 1 changed file with 15 additions and 28 deletions.
43 changes: 15 additions & 28 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

<parent>
<groupId>org.avaje</groupId>
<artifactId>avaje-javaparent</artifactId>
<version>1.2</version>
<artifactId>oss-parent</artifactId>
<version>1.1</version>
</parent>

<groupId>org.avaje.ebeanorm</groupId>
<artifactId>avaje-ebeanorm</artifactId>
<version>7.7.2-SNAPSHOT</version>
<version>7.8.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>avaje-ebeanorm</name>
Expand All @@ -36,9 +36,7 @@
</developers>

<scm>
<connection>scm:git:https://github.com/ebean-orm/avaje-ebeanorm.git</connection>
<developerConnection>scm:git:https://github.com/ebean-orm/avaje-ebeanorm.git</developerConnection>
<url>https://github.com/ebean-orm/avaje-ebeanorm.git</url>
</scm>

<dependencies>
Expand Down Expand Up @@ -67,13 +65,6 @@
<version>1.1.2</version>
</dependency>

<!-- bring in cluster support by default -->
<dependency>
<groupId>org.avaje.ebeanorm</groupId>
<artifactId>avaje-ebeanorm-cluster</artifactId>
<version>1.1.1</version>
</dependency>

<dependency>
<groupId>org.avaje</groupId>
<artifactId>avaje-classpath-scanner-api</artifactId>
Expand All @@ -92,12 +83,11 @@
<version>[1.7.1,1.7.99)</version>
</dependency>

<!-- provided scope for Spring boot loader classpath scanning support -->
<!-- Jackson core used internally by Ebean -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-loader</artifactId>
<version>1.2.7.RELEASE</version>
<scope>provided</scope>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.6.5</version>
</dependency>

<!-- provided scope for JsonNode support -->
Expand All @@ -108,13 +98,6 @@
<scope>provided</scope>
</dependency>

<!-- Jackson core used internally by Ebean -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.6.5</version>
</dependency>

<dependency>
<groupId>javax.transaction</groupId>
<artifactId>jta</artifactId>
Expand Down Expand Up @@ -152,6 +135,8 @@
<scope>provided</scope>
</dependency>

<!-- Test scope -->

<!--<dependency>-->
<!--<groupId>oracle</groupId>-->
<!--<artifactId>oracle-jdbc</artifactId>-->
Expand Down Expand Up @@ -228,9 +213,9 @@
</dependencies>


<!-- Enhance the meta beans -->
<build>
<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand All @@ -240,12 +225,12 @@
<target>1.6</target>
</configuration>
</plugin>

<plugin>
<groupId>org.avaje.ebeanorm</groupId>
<artifactId>avaje-ebeanorm-mavenenhancer</artifactId>
<version>4.9.2</version>
<executions>
<!-- Not going to enhance Model bean -->
<execution>
<id>test</id>
<phase>process-test-classes</phase>
Expand Down Expand Up @@ -282,7 +267,8 @@
</systemProperties>
</configuration>
</plugin>
<plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
Expand All @@ -292,6 +278,7 @@
</archive>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand All @@ -317,7 +304,6 @@
<linksource>true</linksource>
<overview>src/main/java/com/avaje/ebean/overview.html</overview>
</configuration>

<executions>
<execution>
<id>attach-javadocs</id>
Expand All @@ -327,6 +313,7 @@
</execution>
</executions>
</plugin>

</plugins>

</build>
Expand Down

0 comments on commit 75e3b92

Please sign in to comment.