Skip to content

Commit 6506176

Browse files
authored
Merge pull request #47 from clarin-eric/3.0.0-rc1
3.0.0 rc1
2 parents 3b10add + 4265dd5 commit 6506176

File tree

5 files changed

+16
-41
lines changed

5 files changed

+16
-41
lines changed

.gitignore

Lines changed: 2 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,4 @@
1-
# Compiled class file
2-
*.class
3-
4-
# Log file
5-
*.log
6-
7-
# BlueJ files
8-
*.ctxt
9-
10-
# Mobile Tools for Java (J2ME)
11-
.mtj.tmp/
12-
13-
# Package Files #
14-
*.jar
15-
*.war
16-
*.nar
17-
*.ear
18-
*.zip
19-
*.tar.gz
20-
*.rar
21-
22-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23-
hs_err_pid*
241
/target/
25-
26-
# Intellij files
27-
*iml
28-
.idea/
29-
30-
# for running in docker locally
31-
docker/
32-
copy.sh
33-
/.classpath
342
/.project
3+
/.classpath
4+
/.settings/

.mvn/wrapper/maven-wrapper.jar

58.5 KB
Binary file not shown.

crawler-conf.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ config:
4141
- http.method.head
4242

4343
http.agent.name: "${ENV-HTTP_AGENT_NAME}"
44-
http.agent.version: "${version}"
44+
http.agent.version: 3.0.0
4545
# http.agent.description: "${ENV-HTTP_AGENT_DESCRIPTION}"
4646
http.agent.url: "${ENV-HTTP_AGENT_URL}"
4747
# http.agent.email: "${ENV-HTTP_AGENT_EMAIL}"
@@ -112,7 +112,7 @@ config:
112112
#your SPRING configuration properties go here
113113
SPRING:
114114
spring.datasource.url: "${ENV-DATABASE_URI}"
115-
spring.datasource.username: "${ENV-DATABASE_USERNAME}"
115+
spring.datasource.username: "${ENV-DATABASE_USER}"
116116
spring.datasource.password: "${ENV-DATABASE_PASSWORD}"
117117
spring.datasource.driver-class-name: org.mariadb.jdbc.Driver
118118
spring.jpa.show-sql: false

pom.xml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>eu.clarin.cmdi</groupId>
44
<artifactId>linkchecker</artifactId>
5-
<version>3.0.0-SNAPSHOT</version>
5+
<version>3.0.0</version>
66
<packaging>jar</packaging>
77
<properties>
88
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
99
<storm.version>2.4.0</storm.version>
1010
<stormcrawler.version>2.4</stormcrawler.version>
1111
<lombok.version>1.18.24</lombok.version>
12-
<linkchecker-persistence.version>0.0.2-SNAPSHOT</linkchecker-persistence.version>
12+
<linkchecker-persistence.version>0.0.2</linkchecker-persistence.version>
1313
</properties>
1414
<distributionManagement>
1515
<snapshotRepository>
@@ -28,8 +28,8 @@
2828
<artifactId>maven-compiler-plugin</artifactId>
2929
<version>3.2</version>
3030
<configuration>
31-
<source>11</source>
32-
<target>11</target>
31+
<source>17</source>
32+
<target>17</target>
3333
</configuration>
3434
</plugin>
3535
<plugin>
@@ -192,6 +192,11 @@
192192
</exclusion>
193193
</exclusions>
194194
</dependency>
195+
<dependency>
196+
<groupId>org.mariadb.jdbc</groupId>
197+
<artifactId>mariadb-java-client</artifactId>
198+
<version>3.1.2</version>
199+
</dependency>
195200
</dependencies>
196201
<repositories>
197202
<repository>

src/main/java/eu/clarin/linkchecker/config/ApplicationConfig.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
import org.springframework.context.annotation.Configuration;
77
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
88

9-
@ComponentScan(basePackages = {"eu.clarin.cmdi.cpa"})
10-
@EnableJpaRepositories("eu.clarin.cmdi.cpa.repository")
11-
@EntityScan("eu.clarin.cmdi.cpa.model")
9+
@ComponentScan(basePackages = {"eu.clarin.linkchecker.persistence"})
10+
@EnableJpaRepositories("eu.clarin.linkchecker.persistence.repository")
11+
@EntityScan("eu.clarin.linkchecker.persistence.model")
1212
@EnableAutoConfiguration
1313
@Configuration
1414
public class ApplicationConfig {

0 commit comments

Comments
 (0)