Skip to content

Commit

Permalink
Merge branch 'release/v1.7.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
shiido committed Jun 1, 2022
2 parents 61690df + 09c6ca1 commit 64948cb
Show file tree
Hide file tree
Showing 59 changed files with 2,426 additions and 2,192 deletions.
59 changes: 57 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@

<groupId>com.ai.st.microservice.operators</groupId>
<artifactId>st-microservice-operators</artifactId>
<version>1.5.4</version>
<version>1.7.0</version>
<name>st-microservice-operators</name>
<description>Microservice Operators</description>

<properties>
<java.version>1.8</java.version>
<java.version>11</java.version>
<spring-cloud.version>Hoxton.RC2</spring-cloud.version>
</properties>

Expand Down Expand Up @@ -87,6 +87,32 @@
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

<dependency>
<groupId>com.ai.st.microservice.common</groupId>
<artifactId>st-common</artifactId>
<version>1.1.6</version>
</dependency>

<dependency>
<groupId>com.newrelic.logging</groupId>
<artifactId>logback</artifactId>
<version>2.3.2</version>
</dependency>

<dependency>
<groupId>com.newrelic.agent.java</groupId>
<artifactId>newrelic-api</artifactId>
<version>7.5.0</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>com.newrelic.agent.java</groupId>
<artifactId>newrelic-agent</artifactId>
<version>7.5.0</version>
<scope>provided</scope>
</dependency>

</dependencies>

<dependencyManagement>
Expand All @@ -107,6 +133,35 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
<version>2.18.0</version>
<configuration>
<lineEnding>LF</lineEnding>
<encoding>UTF-8</encoding>
</configuration>
<executions>
<execution>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-maven-plugin</artifactId>
<version>8.5.4</version>
<configuration>
<user>postgres</user>
<password>123456</password>
<url>jdbc:postgresql://localhost:54321/sistema-transicion</url>
<schemas>
<schema>operators</schema>
</schemas>
</configuration>
</plugin>
</plugins>
</build>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
@EnableEurekaClient
public class StMicroserviceOperatorsApplication {

public static void main(String[] args) {
SpringApplication.run(StMicroserviceOperatorsApplication.class, args);
}
public static void main(String[] args) {
SpringApplication.run(StMicroserviceOperatorsApplication.class, args);
}

}

This file was deleted.

Loading

0 comments on commit 64948cb

Please sign in to comment.