Skip to content

Commit 9109a1b

Browse files
authored
Update pom.xml
1 parent 7160afc commit 9109a1b

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

pom.xml

+57
Original file line numberDiff line numberDiff line change
@@ -2081,5 +2081,62 @@
20812081
</dependency>
20822082
</dependencies>
20832083
</profile>-->
2084+
<profile>
2085+
<id>webapi-docker-mdaca-codeartifact</id>
2086+
<properties>
2087+
<git.branch>unknown</git.branch>
2088+
<git.commit.id.abbrev>unknown</git.commit.id.abbrev>
2089+
<maven.gitcommitid.skip>true</maven.gitcommitid.skip>
2090+
<miredot.phase>none</miredot.phase>
2091+
<skipTests>true</skipTests>
2092+
<datasource.driverClassName>org.postgresql.Driver</datasource.driverClassName>
2093+
<datasource.url>jdbc:postgresql://54.209.111.128:5432/vocabularyv5</datasource.url>
2094+
<datasource.username>USER</datasource.username>
2095+
<datasource.password>PASS</datasource.password>
2096+
<datasource.dialect>postgresql</datasource.dialect>
2097+
<datasource.ohdsi.schema>ohdsi</datasource.ohdsi.schema>
2098+
<flyway.datasource.driverClassName>${datasource.driverClassName}</flyway.datasource.driverClassName>
2099+
<flyway.datasource.url>${datasource.url}</flyway.datasource.url>
2100+
<flyway.datasource.username>userWithWritesToOhdsiSchema</flyway.datasource.username>
2101+
<flyway.datasource.password>PASS</flyway.datasource.password>
2102+
<flyway.schemas>${datasource.ohdsi.schema}</flyway.schemas>
2103+
<flyway.placeholders.ohdsiSchema>${datasource.ohdsi.schema}</flyway.placeholders.ohdsiSchema>
2104+
<flyway.locations>classpath:db/migration/postgresql</flyway.locations>
2105+
<spring.batch.repository.tableprefix>${datasource.ohdsi.schema}.BATCH_</spring.batch.repository.tableprefix>
2106+
<hibernate.dialect>org.hibernate.dialect.PostgreSQL9Dialect</hibernate.dialect>
2107+
<security.db.datasource.url>${datasource.url}</security.db.datasource.url>
2108+
<security.db.datasource.driverClassName>${datasource.driverClassName}</security.db.datasource.driverClassName>
2109+
<security.db.datasource.username>${datasource.username}</security.db.datasource.username>
2110+
<security.db.datasource.password>${datasource.password}</security.db.datasource.password>
2111+
<security.db.datasource.authenticationQuery>select password from ${security.db.datasource.schema}.users_data where \
2112+
lower(email) = lower(?)</security.db.datasource.authenticationQuery>
2113+
</properties>
2114+
<repositories>
2115+
<!-- OHDSI Snapshots Repository -->
2116+
<repository>
2117+
<id>ohdsi.snapshots</id>
2118+
<name>repo.ohdsi.org-snapshots</name>
2119+
<url>https://repo.ohdsi.org/nexus/content/repositories/snapshots</url>
2120+
<releases>
2121+
<enabled>false</enabled>
2122+
</releases>
2123+
<snapshots>
2124+
<enabled>true</enabled>
2125+
</snapshots>
2126+
</repository>
2127+
<!-- AWS CodeArtifact Repository -->
2128+
<repository>
2129+
<id>mdaca-OHDSI</id>
2130+
<name>AWS CodeArtifact MDACA OHDSI Repository</name>
2131+
<url>https://mdaca-201959883603.d.codeartifact.us-east-2.amazonaws.com/maven/OHDSI/</url>
2132+
<releases>
2133+
<enabled>true</enabled>
2134+
</releases>
2135+
<snapshots>
2136+
<enabled>false</enabled>
2137+
</snapshots>
2138+
</repository>
2139+
</repositories>
2140+
</profile>
20842141
</profiles>
20852142
</project>

0 commit comments

Comments
 (0)