Skip to content

Commit

Permalink
Poms, properties
Browse files Browse the repository at this point in the history
  • Loading branch information
dschiese committed Jun 26, 2024
1 parent 4f97771 commit dfd7981
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 29 deletions.
2 changes: 1 addition & 1 deletion qanary_component-template/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
<dependency>
<groupId>eu.wdaqua.qanary</groupId>
<artifactId>qa.commons</artifactId>
<version>3.16.0</version>
<version>[3.16.0,4.0.0)</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
<dependency>
Expand Down
23 changes: 3 additions & 20 deletions qanary_pipeline-template/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@
<properties>
<java.version>11</java.version>
<spring-boot-admin.version>2.7.15</spring-boot-admin.version>
<qanary.version>[3.15.0,4.0.0)</qanary.version>
<qanary.version>[3.16.0,4.0.0)</qanary.version>
<dockerfile-maven-version>1.4.13</dockerfile-maven-version>
<docker.image.prefix>qanary</docker.image.prefix>
<docker.image.name>qanary-pipeline</docker.image.name>
<docker.platforms>linux/amd64,linux/arm64,linux/arm/v8</docker.platforms>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<springdoc.version>1.7.0</springdoc.version>
<jena.version>4.10.0</jena.version>
</properties>
<dependencies>
<dependency>
Expand Down Expand Up @@ -157,22 +158,10 @@
<version>4.6.1</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.jena/jena-arq -->
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-arq</artifactId>
<version>4.10.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.jena/jena-core -->
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-core</artifactId>
<version>4.10.0</version>
</dependency>
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-querybuilder</artifactId>
<version>4.10.0</version>
<version>${jena.version}</version>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
Expand Down Expand Up @@ -272,12 +261,6 @@
<artifactId>qa.component</artifactId>
<version>3.10.0</version>
</dependency>
<dependency>
<groupId>eu.wdaqua.qanary</groupId>
<artifactId>qa.commons</artifactId>
<version>3.15.0</version>
<scope>compile</scope>
</dependency>
</dependencies>

<!-- START - Setup for deployment to maven repository -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
### name of your component
spring.application.name=MyQanaryPipeline
### server configuration
server.port=8081
server.port=8080
server.host=http://localhost
### SSL configuration
# the path to the key store that contains the SSL certificate, e.g., classpath:keystore.p12
Expand Down Expand Up @@ -73,7 +73,7 @@ qanary.ontology=https://rawcdn.githack.com/WDAqua/QAOntology/6d25ebc8970b93452b5
### if the Qanary pipeline is not used in an interactive mode, components to be used can be predefined
### here (by names)
# example: qanary.components=FirstComponent,SecondComponent
qanary.components=MyQanaryPipeline
qanary.components=
### define what additional (local) properties files should be used
spring.config.location=application.local.properties
### define access security for endpoints /configuration and /applications
Expand All @@ -98,9 +98,9 @@ springdoc.api-docs.path=/api-docs
#stardog.password=admin
### Virtuoso: if you choose to use the Virtuoso triplestore, then the following properties are required to create an instance of QanaryTripleStoreConnector
### see the class for additional configuration properties interpreted by Virtuoso
virtuoso.url=jdbc:virtuoso://localhost:1112
virtuoso.username=dba
virtuoso.password=dba
#virtuoso.url=jdbc:virtuoso://localhost:1111
#virtuoso.username=dba
#virtuoso.password=dba
### changing CORS behavior
### see https://github.com/WDAqua/Qanary/blob/master/qanary_pipeline-template/src/main/java/eu/wdaqua/qanary/web/CorsConfigurationOnCondition.java for
# implementation details
Expand All @@ -111,6 +111,6 @@ virtuoso.password=dba
#cors.global.addAllowedOriginPattern=
#cors.global.endpointPattern=
### SETTINGS FOR QANARY PIPELINE AS COMPONENT
pipeline.as.component=true
spring.boot.admin.url=http://localhost:8080
spring.boot.admin.client.url=http://localhost:8080
pipeline.as.component=false
#spring.boot.admin.url=http://localhost:8080
#spring.boot.admin.client.url=http://localhost:8080

0 comments on commit dfd7981

Please sign in to comment.