Skip to content

Commit f74e5b9

Browse files
authored
Merge pull request #1749 from openturing/0.3.8
0.3.8
2 parents 2fb4d29 + 73d09c4 commit f74e5b9

File tree

242 files changed

+18538
-13074
lines changed

Some content is hidden

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

242 files changed

+18538
-13074
lines changed

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,7 @@ hs_err_pid*
3636
/.idea
3737

3838
.flattened-pom.xml
39-
dependency-reduced-pom.xml
39+
dependency-reduced-pom.xml
40+
/turing-aem/aem-web-indexer/src/main/resources/customer/
41+
/turing-aem/aem-web-indexer/store/db/
42+
/turing-aem/aem-web-indexer/store/logs/

gradle/wrapper/gradle-wrapper.jar

-59.3 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

-5
This file was deleted.

pom.xml

+10-14
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
<module>turing-cms</module>
2727
<!-- <module>turing-wem</module> -->
2828
<module>turing-aem</module>
29+
<module>turing-web-crawler</module>
2930
<module>turing-java-proxy</module>
3031
<module>turing-app</module>
3132
</modules>
@@ -34,7 +35,7 @@
3435
<plugin>
3536
<groupId>org.codehaus.mojo</groupId>
3637
<artifactId>flatten-maven-plugin</artifactId>
37-
<version>1.5.0</version>
38+
<version>1.6.0</version>
3839
<configuration>
3940
<updatePomFile>true</updatePomFile>
4041
<flattenMode>resolveCiFriendliesOnly</flattenMode>
@@ -94,12 +95,12 @@
9495
<dependency>
9596
<groupId>org.json</groupId>
9697
<artifactId>json</artifactId>
97-
<version>20231013</version>
98+
<version>20240303</version>
9899
</dependency>
99100
<dependency>
100101
<groupId>org.apache.commons</groupId>
101102
<artifactId>commons-compress</artifactId>
102-
<version>1.25.0</version>
103+
<version>1.26.1</version>
103104
</dependency>
104105
<dependency>
105106
<groupId>commons-io</groupId>
@@ -119,37 +120,32 @@
119120
<dependency>
120121
<groupId>org.slf4j</groupId>
121122
<artifactId>slf4j-simple</artifactId>
122-
<version>2.0.10</version>
123+
<version>2.0.12</version>
123124
</dependency>
124125
<dependency>
125126
<groupId>org.slf4j</groupId>
126127
<artifactId>slf4j-api</artifactId>
127-
<version>2.0.10</version>
128+
<version>2.0.12</version>
128129
</dependency>
129130
<dependency>
130131
<groupId>org.xerial</groupId>
131132
<artifactId>sqlite-jdbc</artifactId>
132-
<version>3.44.1.0</version>
133+
<version>3.45.2.0</version>
133134
</dependency>
134135
<dependency>
135136
<groupId>org.apache.logging.log4j</groupId>
136137
<artifactId>log4j-core</artifactId>
137-
<version>2.22.1</version>
138+
<version>2.23.1</version>
138139
</dependency>
139140
<dependency>
140141
<groupId>com.fasterxml.jackson.core</groupId>
141142
<artifactId>jackson-databind</artifactId>
142-
<version>2.16.1</version>
143+
<version>2.16.2</version>
143144
</dependency>
144145
<dependency>
145146
<groupId>org.apache.httpcomponents.client5</groupId>
146147
<artifactId>httpclient5</artifactId>
147-
<version>5.3</version>
148-
</dependency>
149-
<dependency>
150-
<groupId>ch.qos.logback</groupId>
151-
<artifactId>logback-classic</artifactId>
152-
<version>1.4.14</version>
148+
<version>5.3.1</version>
153149
</dependency>
154150
</dependencies>
155151
</dependencyManagement>

turing-aem/aem-indexer/pom.xml

+9-4
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@
2222
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
2323
</properties>
2424
<dependencies>
25+
<dependency>
26+
<groupId>com.jayway.jsonpath</groupId>
27+
<artifactId>json-path</artifactId>
28+
<version>2.9.0</version>
29+
</dependency>
2530
<dependency>
2631
<groupId>org.hibernate</groupId>
2732
<artifactId>hibernate-core</artifactId>
@@ -35,7 +40,7 @@
3540
<dependency>
3641
<groupId>org.apache.jackrabbit</groupId>
3742
<artifactId>jackrabbit-jcr-commons</artifactId>
38-
<version>2.21.20</version>
43+
<version>2.21.25</version>
3944
</dependency>
4045
<dependency>
4146
<groupId>com.beust</groupId>
@@ -45,7 +50,7 @@
4550
<dependency>
4651
<groupId>com.fasterxml.jackson.core</groupId>
4752
<artifactId>jackson-databind</artifactId>
48-
<version>2.16.1</version>
53+
<version>2.16.2</version>
4954
</dependency>
5055
<dependency>
5156
<groupId>com.h2database</groupId>
@@ -70,7 +75,7 @@
7075
<dependency>
7176
<groupId>com.google.guava</groupId>
7277
<artifactId>guava</artifactId>
73-
<version>33.0.0-jre</version>
78+
<version>33.1.0-jre</version>
7479
<scope>compile</scope>
7580
</dependency>
7681
<dependency>
@@ -117,7 +122,7 @@
117122
<plugin>
118123
<groupId>org.apache.maven.plugins</groupId>
119124
<artifactId>maven-shade-plugin</artifactId>
120-
<version>3.5.1</version>
125+
<version>3.5.2</version>
121126
<executions>
122127
<execution>
123128
<goals>

turing-aem/aem-indexer/src/main/java/com/viglet/turing/connector/aem/indexer/AemObject.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class AemObject {
2727
private final String url;
2828
private String model;
2929
private final JSONObject node;
30-
private JSONObject jcrContentNode;
30+
private JSONObject jcrContentNode = new JSONObject();
3131
private String title;
3232
private final Map<String, Object> attributes = new HashMap<>();
3333

0 commit comments

Comments
 (0)