Skip to content

Commit

Permalink
Merge branch 'release/v1.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
shiido committed Jun 1, 2022
2 parents 7742168 + aca80c7 commit 8153368
Show file tree
Hide file tree
Showing 66 changed files with 2,337 additions and 2,183 deletions.
60 changes: 58 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.tasks</groupId>
<artifactId>st-microservice-tasks</artifactId>
<version>1.0.9</version>
<version>1.2.0</version>
<name>st-microservice-tasks</name>
<description>Microservice Tasks</description>

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

Expand Down Expand Up @@ -91,6 +91,33 @@
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</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 @@ -111,6 +138,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>tasks</schema>
</schemas>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
@SpringBootApplication
public class StMicroserviceTasksApplication {

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

}
Loading

0 comments on commit 8153368

Please sign in to comment.