Skip to content

Commit 2ca6e86

Browse files
committed
save changes for 3.1.2
1 parent 5555bab commit 2ca6e86

File tree

84 files changed

+4800
-1424
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+4800
-1424
lines changed

adverse-events/pom.xml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,28 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.4.5</version>
8+
<version>2.7.18</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>gov.nih.ncats</groupId>
1212
<artifactId>adverse-events</artifactId>
13-
<version>3.1.1-SNAPSHOT</version>
13+
<version>3.1.2-SNAPSHOT</version>
1414
<name>adverse-events</name>
1515
<description>GSRS Adverse Events Microservices Spring Boot</description>
1616
<properties>
1717
<java.version>8</java.version>
1818
<with.packaging>war</with.packaging>
1919
<with.fork>true</with.fork>
20-
<spring-cloud.version>2020.0.2</spring-cloud.version>
21-
<gsrs.adverse-events.version>3.1.1-SNAPSHOT</gsrs.adverse-events.version>
22-
<gsrs.starter.version>3.1.1</gsrs.starter.version>
20+
<spring-cloud.version>2021.0.8</spring-cloud.version>
21+
<gsrs.adverse-events.version>3.1.2-SNAPSHOT</gsrs.adverse-events.version>
22+
<gsrs.starter.version>3.1.2-SNAPSHOT</gsrs.starter.version>
2323
<log4j2.version>2.17.2</log4j2.version>
2424
<mariadb.version>1.5.7</mariadb.version>
2525
<mysql.version>8.0.26</mysql.version>
2626
<oracle-database.version>19.8.0.0</oracle-database.version>
2727
<postgresql.version>42.7.3</postgresql.version>
2828
<!-- TO BE REMOVED -->
29-
<gsrs.substance.version>3.1.1.2</gsrs.substance.version>
29+
<gsrs.substance.version>3.1.2-SNAPSHOT</gsrs.substance.version>
3030
</properties>
3131

3232
<packaging>${with.packaging}</packaging>
@@ -127,6 +127,12 @@
127127
<scope>test</scope>
128128
</dependency>
129129

130+
<dependency>
131+
<groupId>org.springframework.cloud</groupId>
132+
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
133+
</dependency>
134+
135+
130136
<!-- NCATS ADVERSE EVENTS DEPENDENICES -->
131137
<dependency>
132138
<groupId>gov.nih.ncats</groupId>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Application host url should have no trailing slash
2+
APPLICATION_HOST="http://localhost:8081"
3+
APPLICATION_HOST=${?GATEWAY_HOST}
4+
APPLICATION_HOST=${?OVERRIDE_APPLICATION_HOST}
5+
APPLICATION_HOST_PORT=8081
6+
APPLICATION_HOST_PORT=${?GATEWAY_HOST_PORT}
7+
APPLICATION_HOST_PORT=${?OVERRIDE_APPLICATION_HOST_PORT}
8+
9+
MS_SERVER_PORT_ADVERSE_EVENTS=8086
10+
MS_LOOPBACK_PORT_ADVERSE_EVENTS=8086
11+
MS_SERVLET_CONTEXT_PATH_ADVERSE_EVENTS="/"
12+
IX_HOME="ginas.ix"
13+
IX_HOME_SUBSTANCES="../substances/ginas.ix"
14+
DB_DDL_AUTO=update
15+
# API URLS have slash
16+
API_BASE_URL_SUBSTANCES=${APPLICATION_HOST}"/"
17+
18+
MS_ALLOW_CIRCULAR_REFERENCES_ADVERSE_EVENTS=true

0 commit comments

Comments
 (0)