Skip to content

Commit 85761e5

Browse files
committed
- gh release upload
1 parent 81768a7 commit 85761e5

File tree

293 files changed

+103
-2
lines changed

Some content is hidden

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

293 files changed

+103
-2
lines changed

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@
120120
</property>
121121
</activation>
122122
<modules>
123+
<module>turing-utils</module>
123124
<module>turing-commons</module>
124125
<module>turing-spring</module>
125126
<module>turing-java-sdk</module>

turing-commons/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@
7070
</dependency>
7171
</dependencies>
7272
<build>
73+
<finalName>turing-commons</finalName>
7374
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
7475
<plugins>
7576
<!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->

turing-java-sdk/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
</dependency>
3838
</dependencies>
3939
<build>
40+
<finalName>turing-java-sdk</finalName>
4041
<plugins>
4142
<!-- Maven Compiler Plugin -->
4243
<plugin>
@@ -48,7 +49,6 @@
4849
<target>11</target>
4950
</configuration>
5051
</plugin>
51-
5252
<plugin>
5353
<artifactId>maven-shade-plugin</artifactId>
5454
<version>3.6.0</version>
@@ -59,7 +59,6 @@
5959
</goals>
6060
<phase>none</phase>
6161
<configuration>
62-
<finalName>turing-java-sdk</finalName>
6362
<shadedArtifactAttached>true</shadedArtifactAttached>
6463
<shadedClassifierName>indexer</shadedClassifierName>
6564
</configuration>

turing-nutch/nutch1_20/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
</dependency>
5555
</dependencies>
5656
<build>
57+
<finalName>turing-nutch120</finalName>
5758
<plugins>
5859
<plugin>
5960
<artifactId>maven-compiler-plugin</artifactId>
File renamed without changes.
File renamed without changes.
File renamed without changes.

turing-utils/pom.xml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<groupId>com.viglet.turing</groupId>
7+
<artifactId>turing</artifactId>
8+
<version>${revision}</version>
9+
<relativePath>../pom.xml</relativePath>
10+
</parent>
11+
12+
<groupId>com.viglet.turing</groupId>
13+
<artifactId>turing-utils</artifactId>
14+
<version>${revision}</version>
15+
<name>Turing Utils</name>
16+
<description>Turing Utils</description>
17+
<packaging>pom</packaging>
18+
<properties>
19+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
21+
<java.version>21</java.version>
22+
<maven.compiler.source>21</maven.compiler.source>
23+
<maven.compiler.target>21</maven.compiler.target>
24+
</properties>
25+
<build>
26+
27+
<plugins>
28+
<plugin>
29+
<artifactId>maven-assembly-plugin</artifactId>
30+
<version>3.7.1</version>
31+
<configuration>
32+
<finalName>turing</finalName>
33+
<descriptors>
34+
<descriptor>src/assembly/distribution.xml</descriptor>
35+
</descriptors>
36+
</configuration>
37+
<executions>
38+
<execution>
39+
<id>make-assembly</id>
40+
<phase>package</phase>
41+
<goals>
42+
<goal>single</goal>
43+
</goals>
44+
</execution>
45+
</executions>
46+
</plugin>
47+
</plugins>
48+
</build>
49+
</project>

0 commit comments

Comments
 (0)