|
1 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 | 3 |
|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 |
|
|
122 | 122 | <security.ad.system.password></security.ad.system.password> |
123 | 123 | <security.ad.searchFilter>(&(objectClass=person)(cn=%s))</security.ad.searchFilter> |
124 | 124 | <security.ad.ignore.partial.result.exception>true</security.ad.ignore.partial.result.exception> |
125 | | - <security.ad.result.count.limit>30000</security.ad.result.count.limit> <!-- 0 means no limit --> |
| 125 | + <security.ad.result.count.limit>30000</security.ad.result.count.limit> <!-- 0 means no limit --> |
126 | 126 | <security.ad.default.import.group>public</security.ad.default.import.group> |
127 | 127 | <security.ad.searchString>(&(objectClass=person)(userPrincipalName=%s))</security.ad.searchString> |
128 | 128 | <security.ad.userMapping.displaynameAttr>displayname</security.ad.userMapping.displaynameAttr> |
|
191 | 191 | <!-- If defaultGlobalReadPermissions is set to true (default), then all users can see every artifact. --> |
192 | 192 | <!-- If it is set to false, WebAPI will filter out the artifacts that a user does not explicitly have --> |
193 | 193 | <!-- read permissions to --> |
194 | | - <security.defaultGlobalReadPermissions>true</security.defaultGlobalReadPermissions> |
195 | | - |
| 194 | + <security.defaultGlobalReadPermissions>true</security.defaultGlobalReadPermissions> |
| 195 | + |
196 | 196 | <!-- EMBEDDED SERVER CONFIGURATION (ServerProperties) --> |
197 | 197 | <server.port>8080</server.port> |
198 | 198 | <server.ssl.key-store></server.ssl.key-store> |
|
216 | 216 | <jasypt.encryptor.enabled>false</jasypt.encryptor.enabled> |
217 | 217 | <jasypt.encryptor.password></jasypt.encryptor.password> |
218 | 218 | <jasypt.encryptor.algorithm>PBEWithMD5AndDES</jasypt.encryptor.algorithm> |
219 | | - |
| 219 | + |
220 | 220 | <!-- ORGANIZATION SETTINGS --> |
221 | 221 | <organization.name>OHDSI</organization.name> |
222 | 222 |
|
|
298 | 298 | <audit.trail.log.file>/tmp/atlas/audit/audit.log</audit.trail.log.file> |
299 | 299 | <audit.trail.log.extraFile>/tmp/atlas/audit/audit-extra.log</audit.trail.log.extraFile> |
300 | 300 | </properties> |
| 301 | + |
301 | 302 | <build> |
302 | 303 | <finalName>WebAPI</finalName> |
303 | 304 | <sourceDirectory>${basedir}/src/main/java</sourceDirectory> |
|
368 | 369 | <!-- only include properties to speed up plugin --> |
369 | 370 | <!-- ref: https://github.com/git-commit-id/git-commit-id-maven-plugin/issues/462 --> |
370 | 371 | <includeOnlyProperties> |
371 | | - <includeOnlyProperty>git.branch</includeOnlyProperty> |
372 | | - <includeOnlyProperty>git.commit.id.abbrev</includeOnlyProperty> |
| 372 | + <includeOnlyProperty>git.branch</includeOnlyProperty> |
| 373 | + <includeOnlyProperty>git.commit.id.abbrev</includeOnlyProperty> |
373 | 374 | </includeOnlyProperties> |
374 | 375 | </configuration> |
375 | 376 | </plugin> |
|
575 | 576 | </dependency> |
576 | 577 | </dependencies> |
577 | 578 | </dependencyManagement> |
| 579 | + |
578 | 580 | <dependencies> |
579 | 581 | <dependency> |
580 | 582 | <groupId>com.fasterxml.jackson.core</groupId> |
|
813 | 815 | <artifactId>jackson-databind</artifactId> |
814 | 816 | </exclusion> |
815 | 817 | <exclusion> |
816 | | - <groupId>org.slf4j</groupId> |
817 | | - <artifactId>slf4j-log4j12</artifactId> |
| 818 | + <groupId>org.slf4j</groupId> |
| 819 | + <artifactId>slf4j-log4j12</artifactId> |
818 | 820 | </exclusion> |
819 | 821 | <exclusion> |
820 | | - <groupId>log4j</groupId> |
821 | | - <artifactId>log4j</artifactId> |
| 822 | + <groupId>log4j</groupId> |
| 823 | + <artifactId>log4j</artifactId> |
822 | 824 | </exclusion> |
823 | 825 | </exclusions> |
824 | 826 | </dependency> |
|
1164 | 1166 | <version>${pac4j.version}</version> |
1165 | 1167 | <exclusions> |
1166 | 1168 | <exclusion> |
1167 | | - <groupId>com.fasterxml.jackson.core</groupId> |
| 1169 | + <groupId>com.fasterxml.jackson.core</groupId> |
1168 | 1170 | <artifactId>jackson-databind</artifactId> |
1169 | 1171 | </exclusion> |
1170 | 1172 | </exclusions> |
|
1210 | 1212 | <artifactId>spring-boot-starter-test</artifactId> |
1211 | 1213 | <version>${spring.boot.version}</version> |
1212 | 1214 | <scope>test</scope> |
1213 | | - <exclusions> |
1214 | | - <exclusion> |
1215 | | - <groupId>com.vaadin.external.google</groupId> |
1216 | | - <artifactId>android-json</artifactId> |
1217 | | - </exclusion> |
1218 | | - </exclusions> |
| 1215 | + <exclusions> |
| 1216 | + <exclusion> |
| 1217 | + <groupId>com.vaadin.external.google</groupId> |
| 1218 | + <artifactId>android-json</artifactId> |
| 1219 | + </exclusion> |
| 1220 | + </exclusions> |
1219 | 1221 | </dependency> |
1220 | 1222 | <dependency> |
1221 | 1223 | <groupId>org.dbunit</groupId> |
|
1236 | 1238 | <scope>test</scope> |
1237 | 1239 | </dependency> |
1238 | 1240 | <dependency> |
1239 | | - <groupId>com.github.mjeanroy</groupId> |
1240 | | - <artifactId>dbunit-plus</artifactId> |
1241 | | - <version>2.0.1</version> |
1242 | | - <scope>test</scope> |
| 1241 | + <groupId>com.github.mjeanroy</groupId> |
| 1242 | + <artifactId>dbunit-plus</artifactId> |
| 1243 | + <version>2.0.1</version> |
| 1244 | + <scope>test</scope> |
1243 | 1245 | </dependency> |
1244 | 1246 | </dependencies> |
| 1247 | + |
1245 | 1248 | <profiles> |
1246 | 1249 | <profile> |
1247 | 1250 | <id>webapi-oracle</id> |
|
1334 | 1337 | lower(email) = lower(?)</security.db.datasource.authenticationQuery> |
1335 | 1338 | </properties> |
1336 | 1339 | <repositories> |
1337 | | - <repository> |
| 1340 | + <repository> |
1338 | 1341 | <id>ohdsi.snapshots</id> |
1339 | 1342 | <name>repo.ohdsi.org-snapshots</name> |
1340 | 1343 | <url>https://repo.ohdsi.org/nexus/content/repositories/snapshots</url> |
1341 | 1344 | <releases> |
1342 | 1345 | <enabled>false</enabled> |
1343 | 1346 | </releases> |
1344 | | - <snapshots> |
| 1347 | + <snapshots> |
1345 | 1348 | <enabled>true</enabled> |
1346 | | - </snapshots> |
1347 | | - </repository> |
| 1349 | + </snapshots> |
| 1350 | + </repository> |
1348 | 1351 | </repositories> |
1349 | 1352 | </profile> |
1350 | 1353 | <profile> |
|
1417 | 1420 | <impala.enabled>true</impala.enabled> |
1418 | 1421 | <impala.driver.version>2.6.15</impala.driver.version> |
1419 | 1422 | <!-- Impala JDBC driver path --> |
1420 | | - <impala.classpath>...path/to/impala/jdbc/drivers...</impala.classpath> |
| 1423 | + <impala.classpath>...path/to/impala/jdbc/drivers...</impala.classpath> |
1421 | 1424 | </properties> |
1422 | 1425 | <dependencies> |
1423 | 1426 | <dependency> |
|
1522 | 1525 | <version>v2-rev20220326-1.32.1</version> |
1523 | 1526 | </dependency> |
1524 | 1527 | <dependency> |
1525 | | - <groupId>com.google.cloud</groupId> |
1526 | | - <artifactId>google-cloud-bigquery</artifactId> |
1527 | | - <version>1.2.15</version> |
| 1528 | + <groupId>com.google.cloud</groupId> |
| 1529 | + <artifactId>google-cloud-bigquery</artifactId> |
| 1530 | + <version>1.2.15</version> |
1528 | 1531 | </dependency> |
1529 | 1532 | <dependency> |
1530 | 1533 | <groupId>com.google.http-client</groupId> |
|
0 commit comments