Skip to content

Commit 4c6db65

Browse files
committed
v1.1
1 parent 75debe6 commit 4c6db65

10 files changed

Lines changed: 202 additions & 5 deletions

File tree

epg-reader/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.github.defective4.tv</groupId>
77
<artifactId>ts-data-toolkit</artifactId>
8-
<version>1.0</version>
8+
<version>1.1</version>
99
</parent>
1010
<artifactId>epg-reader</artifactId>
1111
<build>

epg-reader/pom.xml.versionsBackup

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>io.github.defective4.tv</groupId>
7+
<artifactId>ts-data-toolkit</artifactId>
8+
<version>1.0</version>
9+
</parent>
10+
<artifactId>epg-reader</artifactId>
11+
<build>
12+
<plugins>
13+
<plugin>
14+
<groupId>org.apache.maven.plugins</groupId>
15+
<artifactId>maven-jar-plugin</artifactId>
16+
<version>3.4.1</version>
17+
<configuration>
18+
<archive>
19+
<manifest>
20+
<mainClass>io.github.defective4.tv.epgreader.Main</mainClass>
21+
</manifest>
22+
</archive>
23+
</configuration>
24+
</plugin>
25+
</plugins>
26+
</build>
27+
<dependencies>
28+
<dependency>
29+
<groupId>com.opencsv</groupId>
30+
<artifactId>opencsv</artifactId>
31+
<version>5.9</version>
32+
</dependency>
33+
<dependency>
34+
<groupId>org.jfree</groupId>
35+
<artifactId>jfreechart</artifactId>
36+
<version>1.5.5</version>
37+
</dependency>
38+
<dependency>
39+
<groupId>nl.digitalekabeltelevisie</groupId>
40+
<artifactId>DVBinspector</artifactId>
41+
<version>1.21.0</version>
42+
</dependency>
43+
<dependency>
44+
<groupId>org.jsoup</groupId>
45+
<artifactId>jsoup</artifactId>
46+
<version>1.18.3</version>
47+
</dependency>
48+
</dependencies>
49+
</project>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.github.defective4.tv</groupId>
66
<artifactId>ts-data-toolkit</artifactId>
7-
<version>1.0</version>
7+
<version>1.1</version>
88
<packaging>pom</packaging>
99
<properties>
1010
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>

pom.xml.versionsBackup

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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+
<groupId>io.github.defective4.tv</groupId>
6+
<artifactId>ts-data-toolkit</artifactId>
7+
<version>1.0</version>
8+
<packaging>pom</packaging>
9+
<properties>
10+
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
11+
</properties>
12+
<build>
13+
<plugins>
14+
<plugin>
15+
<groupId>org.apache.maven.plugins</groupId>
16+
<artifactId>maven-jar-plugin</artifactId>
17+
<version>3.4.1</version>
18+
<configuration>
19+
<archive>
20+
<manifest>
21+
<addClasspath>true</addClasspath>
22+
<classpathPrefix>dependency/</classpathPrefix>
23+
</manifest>
24+
</archive>
25+
</configuration>
26+
</plugin>
27+
<plugin>
28+
<groupId>org.apache.maven.plugins</groupId>
29+
<artifactId>maven-compiler-plugin</artifactId>
30+
<version>3.13.0</version>
31+
<configuration>
32+
<release>21</release>
33+
</configuration>
34+
</plugin>
35+
</plugins>
36+
</build>
37+
<modules>
38+
<module>epg-reader</module>
39+
<module>ttx-parser</module>
40+
<module>ttx-pl-character-converter</module>
41+
<module>ttx-enhancer</module>
42+
</modules>
43+
</project>

ttx-enhancer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.github.defective4.tv</groupId>
77
<artifactId>ts-data-toolkit</artifactId>
8-
<version>1.0</version>
8+
<version>1.1</version>
99
</parent>
1010
<artifactId>ttx-enhancer</artifactId>
1111
<build>
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>io.github.defective4.tv</groupId>
7+
<artifactId>ts-data-toolkit</artifactId>
8+
<version>1.0</version>
9+
</parent>
10+
<artifactId>ttx-enhancer</artifactId>
11+
<build>
12+
<plugins>
13+
<plugin>
14+
<groupId>org.apache.maven.plugins</groupId>
15+
<artifactId>maven-jar-plugin</artifactId>
16+
<version>3.4.1</version>
17+
<configuration>
18+
<archive>
19+
<manifest>
20+
<mainClass>io.github.defective4.tv.ttxenh.Main</mainClass>
21+
</manifest>
22+
</archive>
23+
</configuration>
24+
</plugin>
25+
</plugins>
26+
</build>
27+
<dependencies>
28+
<dependency>
29+
<groupId>org.jsoup</groupId>
30+
<artifactId>jsoup</artifactId>
31+
<version>1.18.3</version>
32+
</dependency>
33+
</dependencies>
34+
</project>

ttx-parser/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.github.defective4.tv</groupId>
77
<artifactId>ts-data-toolkit</artifactId>
8-
<version>1.0</version>
8+
<version>1.1</version>
99
</parent>
1010
<build>
1111
<plugins>

ttx-parser/pom.xml.versionsBackup

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>io.github.defective4.tv</groupId>
7+
<artifactId>ts-data-toolkit</artifactId>
8+
<version>1.0</version>
9+
</parent>
10+
<build>
11+
<plugins>
12+
<plugin>
13+
<groupId>org.apache.maven.plugins</groupId>
14+
<artifactId>maven-jar-plugin</artifactId>
15+
<version>3.4.1</version>
16+
<configuration>
17+
<archive>
18+
<manifest>
19+
<mainClass>io.github.defective4.tv.t42parser.Main</mainClass>
20+
</manifest>
21+
</archive>
22+
</configuration>
23+
</plugin>
24+
</plugins>
25+
</build>
26+
<artifactId>ttx-parser</artifactId>
27+
<dependencies>
28+
<dependency>
29+
<groupId>nl.digitalekabeltelevisie</groupId>
30+
<artifactId>DVBinspector</artifactId>
31+
<version>1.21.0</version>
32+
</dependency>
33+
<dependency>
34+
<groupId>com.opencsv</groupId>
35+
<artifactId>opencsv</artifactId>
36+
<version>5.9</version>
37+
</dependency>
38+
<dependency>
39+
<groupId>org.jsoup</groupId>
40+
<artifactId>jsoup</artifactId>
41+
<version>1.18.3</version>
42+
</dependency>
43+
</dependencies>
44+
</project>

ttx-pl-character-converter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.github.defective4.tv</groupId>
77
<artifactId>ts-data-toolkit</artifactId>
8-
<version>1.0</version>
8+
<version>1.1</version>
99
</parent>
1010
<artifactId>ttx-pl-character-converter</artifactId>
1111
<build>
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>io.github.defective4.tv</groupId>
7+
<artifactId>ts-data-toolkit</artifactId>
8+
<version>1.0</version>
9+
</parent>
10+
<artifactId>ttx-pl-character-converter</artifactId>
11+
<build>
12+
<plugins>
13+
<plugin>
14+
<groupId>org.apache.maven.plugins</groupId>
15+
<artifactId>maven-jar-plugin</artifactId>
16+
<version>3.4.1</version>
17+
<configuration>
18+
<archive>
19+
<manifest>
20+
<mainClass>io.github.defective4.tv.ttxconverter.Main</mainClass>
21+
</manifest>
22+
</archive>
23+
</configuration>
24+
</plugin>
25+
</plugins>
26+
</build>
27+
</project>

0 commit comments

Comments
 (0)