Skip to content

Commit 3890c44

Browse files
author
jvanmalder
committed
feat: release v1.7.0
1 parent 186ed09 commit 3890c44

File tree

899 files changed

+62633
-41460
lines changed

Some content is hidden

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

899 files changed

+62633
-41460
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ build/tmp
1010
build/publications
1111
app/build
1212
app/bin
13+
base/build
14+
base/bin
15+
r-module/build
16+
r-module/bin
1317
docker/proxy/logs
1418
repo/build
1519
repo/bin
@@ -27,3 +31,7 @@ src/integration-test/resources/itestServer
2731
src/integration-test/resources/itestSourceFiles
2832
src/integration-test/resources/itestPdf
2933
/build/
34+
repo/target
35+
app/target
36+
base/target
37+
r-module/target

Jenkinsfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ pipeline {
7373
reportDir: 'repo/build/reports/tests/test', reportFiles: 'index.html',
7474
reportName: 'Repo Test Report',
7575
allowMissing: true, alwaysLinkToLastBuild: true, keepAll: true])
76+
publishHTML([
77+
reportDir: 'r-module/build/reports/tests/test', reportFiles: 'index.html',
78+
reportName: 'R Module Test Report',
79+
allowMissing: true, alwaysLinkToLastBuild: true, keepAll: true])
7680
publishHTML([
7781
reportDir: 'build/reports', reportFiles: 'dependency-check-report.html',
7882
reportName: 'OWASP Dependency Analysis Report',

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ app:
22
rm -rf ./build/
33
rm -rf ./app/build/
44
rm -rf ./repo/build/
5+
rm -rf ./base/build/
6+
rm -rf ./r-module/build/
57
./gradlew build -x test -x integrationTest testClasses -x dependencyCheckAggregate #temporary change
68
cp -f ./app/build/libs/rdepot-app*application.war ./docker/app/rdepot.war
79
cp -f ./app/build/libs/rdepot-app*application.war ./src/integration-test/resources/docker/app/rdepot.war

app/build.gradle

Lines changed: 6 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
}
55
dependencies {
66
classpath "org.springframework.boot:spring-boot-gradle-plugin:2.5.12"
7-
classpath("io.spring.gradle:dependency-management-plugin:1.0.11.RELEASE")
7+
classpath("io.spring.gradle:dependency-management-plugin:1.0.14.RELEASE")
88
}
99
}
1010

@@ -53,6 +53,9 @@ test {
5353

5454
dependencies {
5555
Map<String, String> dependencies = globalConf.commonDependencies
56+
57+
implementation project(':rdepot-r-module')
58+
testImplementation project(':rdepot-r-module')
5659
implementation dependencies.jsonSimple
5760
implementation dependencies.sbStarterWeb
5861
implementation dependencies.sbDevTools
@@ -90,41 +93,17 @@ dependencies {
9093
implementation dependencies.hateoas
9194
implementation dependencies.jakartaJsonApi
9295
implementation dependencies.apacheJohnzon
93-
implementation dependencies.jakartaJsonProvider
9496
implementation dependencies.jacksonJSR353
9597

9698
implementation dependencies.commonsCollections4
9799
implementation dependencies.apacheCommons
98-
99100
implementation dependencies.liquibaseCore
100-
101-
testImplementation dependencies.sbStarterTest
101+
implementation dependencies.reflections
102+
implementation dependencies.mail
102103

103-
testImplementation dependencies.secTest
104-
testImplementation dependencies.jerseyHk2
105-
testImplementation dependencies.httpComponents
106-
testImplementation dependencies.httpComponentsTest
107-
testImplementation dependencies.junit5Engine
108-
testImplementation dependencies.junit5Api
109-
testImplementation dependencies.junit5Params
110-
testImplementation dependencies.junitVintage
111104

112105
}
113106

114-
sourceSets {
115-
test {
116-
java {
117-
include '**/eu/openanalytics/rdepot/test/unit/*'
118-
include '**/eu/openanalytics/rdepot/test/unit/api/v2/*'
119-
include '**/eu/openanalytics/rdepot/test/fixture/*'
120-
include '**/eu/openanalytics/rdepot/test/unit/answer/*'
121-
include '**/eu/openanalytics/rdepot/test/unit/time/*'
122-
include '**/eu/openanalytics/rdepot/test/config/*'
123-
include '**/eu/openanalytics/rdepot/test/context/*'
124-
}
125-
}
126-
}
127-
128107
publishing {
129108
publications {
130109
warFile(MavenPublication) {

app/src/main/java/eu/openanalytics/rdepot/Application.java

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,11 @@
3232
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
3333
import org.springframework.web.context.WebApplicationContext;
3434

35-
/**
36-
* @author jonas
37-
*
38-
*/
3935
@SpringBootApplication
4036
@EnableAutoConfiguration(exclude = {MultipartAutoConfiguration.class})
4137
@EnableConfigurationProperties(KeycloakSpringBootProperties.class)
4238
public class Application extends SpringBootServletInitializer {
43-
44-
/**
45-
* @param args
46-
*/
39+
4740
public static void main(String[] args) {
4841
SpringApplication.run(Application.class, args);
4942
}

0 commit comments

Comments
 (0)