Skip to content

Commit

Permalink
Removed dependency management from child POMs (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuilhermeCamposo authored Oct 5, 2022
1 parent 64e1403 commit 462755c
Show file tree
Hide file tree
Showing 8 changed files with 384 additions and 594 deletions.
54 changes: 7 additions & 47 deletions iDaaS-Connect-BlueButton/pom.xml
Original file line number Diff line number Diff line change
@@ -1,36 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>
<!--Internal Project Details-->
<groupId>io.connectedhealth_idaas.bluebutton</groupId>
<artifactId>io.connectedhealth_idaas.bluebutton</artifactId>
<version>3.9.7-SNAPSHOT</version>

<properties>
<camel.version>3.14.0</camel.version>
<springboot.version>2.4.4</springboot.version>
</properties>
<!-- https://camel.apache.org/releases/release-3.9.0/ -->
<dependencyManagement>
<dependencies>
<!-- Spring Boot BOM -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${springboot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Camel BOM -->
<dependency>
<groupId>org.apache.camel.springboot</groupId>
<artifactId>camel-spring-boot-dependencies</artifactId>
<version>${camel.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<artifactId>blue-button</artifactId>
<parent>
<groupId>io.connectedhealth_idaas</groupId>
<artifactId>idaas-connect</artifactId>
<version>3.9.7-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<dependencies>
<!-- Camel -->
Expand Down Expand Up @@ -79,12 +56,6 @@
<groupId>org.apache.camel</groupId>
<artifactId>camel-bean</artifactId>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.35</version>
</dependency>
<!-- PDF -->
<dependency>
<groupId>org.apache.camel</groupId>
Expand All @@ -94,7 +65,6 @@
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-bindy-starter</artifactId>
<version>2.25.3</version>
</dependency>
<!-- XML Parsing -->
<dependency>
Expand All @@ -104,20 +74,17 @@
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>2.3.2</version>
</dependency>
<!--https://stackoverflow.com/questions/48722138/how-to-monitor-apache-camel-routes-in-a-java-project-using-hawtio-->
<!-- UI -->
<dependency>
<groupId>io.hawt</groupId>
<artifactId>hawtio-springboot</artifactId>
<version>2.14.4</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.jolokia/jolokia-jvm -->
<dependency>
<groupId>org.jolokia</groupId>
<artifactId>jolokia-jvm</artifactId>
<version>1.6.2</version>
</dependency>
<!-- This dependency is mandatory for enabling Camel management via JMX / Hawtio. -->
<dependency>
Expand All @@ -137,18 +104,11 @@
<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>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${springboot.version}</version>
</plugin>
</plugins>
</build>
</project>

Loading

0 comments on commit 462755c

Please sign in to comment.