Skip to content

Commit 7892223

Browse files
authored
Merge pull request #7 from fugerit-org/snyk-upgrade-c632eb07599caeb5a6e0141c177a05dd
[Snyk] Upgrade com.opencsv:opencsv from 5.8 to 5.9
2 parents 85c7a6c + ec78652 commit 7892223

File tree

1 file changed

+175
-175
lines changed

1 file changed

+175
-175
lines changed

pom.xml

Lines changed: 175 additions & 175 deletions
Original file line numberDiff line numberDiff line change
@@ -1,178 +1,178 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0"
22
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4-
<modelVersion>4.0.0</modelVersion>
5-
6-
<parent>
7-
<groupId>org.fugerit.java</groupId>
8-
<artifactId>fj-bom</artifactId>
9-
<version>1.4.2</version>
10-
<relativePath></relativePath>
11-
</parent>
12-
13-
<artifactId>query-export-tool</artifactId>
14-
15-
<version>0.4.2</version>
16-
<packaging>jar</packaging>
17-
18-
<name>query-export-tool</name>
19-
<description>Tool export query in CSV and other formats</description>
20-
<url>http://www.fugerit.org/java/</url>
21-
22-
<scm>
23-
<connection>scm:git:git://github.com/fugerit-org/query-export-tool.git</connection>
24-
<developerConnection>scm:git:ssh://github.com/fugerit-org/query-export-tool.git</developerConnection>
25-
<url>http://github.com/fugerit-org/query-export-tool/tree/master</url>
26-
</scm>
27-
28-
<properties>
29-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
30-
<java-version-compliance>8</java-version-compliance>
31-
<maven.compiler.source>${java-version-compliance}</maven.compiler.source>
32-
<maven.compiler.target>${java-version-compliance}</maven.compiler.target>
33-
<maven.compiler.release>${java-version-compliance}</maven.compiler.release>
34-
<!-- libraries versions -->
35-
<fj-version>8.3.8</fj-version>
36-
<opencsv-version>5.8</opencsv-version>
37-
</properties>
38-
39-
<licenses>
40-
<license>
41-
<name>Apache License, Version 2.0</name>
42-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
43-
<distribution>repo</distribution>
44-
</license>
45-
</licenses>
46-
47-
<developers>
48-
<developer>
49-
<name>Matteo a.k.a. Fugerit</name>
50-
<email>m@fugerit.org</email>
51-
<organization>Fugerit</organization>
52-
<organizationUrl>http://www.fugerit.org</organizationUrl>
53-
</developer>
54-
<developer>
55-
<name>Daneel</name>
56-
<email>d@fugerit.org</email>
57-
<organization>Fugerit</organization>
58-
<organizationUrl>http://www.fugerit.org</organizationUrl>
59-
</developer>
60-
</developers>
61-
62-
<distributionManagement>
63-
<snapshotRepository>
64-
<id>ossrh</id>
65-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
66-
</snapshotRepository>
67-
</distributionManagement>
68-
69-
<dependencies>
70-
71-
<dependency>
72-
<groupId>org.fugerit.java</groupId>
73-
<artifactId>fj-core</artifactId>
74-
<version>${fj-version}</version>
75-
</dependency>
76-
77-
<dependency>
78-
<groupId>com.opencsv</groupId>
79-
<artifactId>opencsv</artifactId>
80-
<version>${opencsv-version}</version>
81-
</dependency>
82-
83-
<dependency>
84-
<groupId>org.apache.poi</groupId>
85-
<artifactId>poi-ooxml</artifactId>
86-
<scope>provided</scope>
87-
</dependency>
88-
89-
<dependency>
90-
<groupId>org.slf4j</groupId>
91-
<artifactId>slf4j-simple</artifactId>
92-
<scope>test</scope>
93-
</dependency>
94-
95-
<dependency>
96-
<groupId>org.projectlombok</groupId>
97-
<artifactId>lombok</artifactId>
98-
<scope>provided</scope>
99-
</dependency>
100-
101-
<dependency>
102-
<groupId>org.hsqldb</groupId>
103-
<artifactId>hsqldb</artifactId>
104-
<scope>test</scope>
105-
</dependency>
106-
107-
<dependency>
108-
<groupId>junit</groupId>
109-
<artifactId>junit</artifactId>
110-
<scope>test</scope>
111-
</dependency>
112-
113-
</dependencies>
114-
115-
<profiles>
116-
117-
<profile>
118-
<id>singlepackage</id>
119-
<dependencies>
120-
<dependency>
121-
<groupId>org.apache.poi</groupId>
122-
<artifactId>poi-ooxml</artifactId>
123-
</dependency>
124-
<dependency>
125-
<groupId>org.apache.logging.log4j</groupId>
126-
<artifactId>log4j-api</artifactId>
127-
</dependency>
128-
<dependency>
129-
<groupId>org.apache.logging.log4j</groupId>
130-
<artifactId>log4j-core</artifactId>
131-
</dependency>
132-
<dependency>
133-
<groupId>org.apache.logging.log4j</groupId>
134-
<artifactId>log4j-slf4j2-impl</artifactId>
135-
</dependency>
136-
</dependencies>
137-
<build>
138-
<plugins>
139-
<plugin>
140-
<groupId>org.apache.maven.plugins</groupId>
141-
<artifactId>maven-jar-plugin</artifactId>
142-
<version>3.0.2</version>
143-
<configuration>
144-
<archive>
145-
<manifest>
146-
<addClasspath>true</addClasspath>
147-
<mainClass>org.fugerit.java.query.export.tool.QueryExportToolMain</mainClass>
148-
</manifest>
149-
</archive>
150-
</configuration>
151-
</plugin>
152-
<plugin>
153-
<groupId>org.apache.maven.plugins</groupId>
154-
<artifactId>maven-shade-plugin</artifactId>
155-
<version>3.1.0</version>
156-
<executions>
157-
<execution>
158-
<phase>package</phase>
159-
<goals>
160-
<goal>shade</goal>
161-
</goals>
162-
</execution>
163-
</executions>
164-
<configuration>
165-
<finalName>dist-${project.artifactId}-${project.version}</finalName>
166-
</configuration>
167-
</plugin>
168-
</plugins>
169-
</build>
170-
</profile>
171-
</profiles>
172-
173-
<organization>
174-
<url>http://www.fugerit.org</url>
175-
<name>Fugerit</name>
176-
</organization>
177-
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<parent>
7+
<groupId>org.fugerit.java</groupId>
8+
<artifactId>fj-bom</artifactId>
9+
<version>1.4.2</version>
10+
<relativePath/>
11+
</parent>
12+
13+
<artifactId>query-export-tool</artifactId>
14+
15+
<version>0.4.2</version>
16+
<packaging>jar</packaging>
17+
18+
<name>query-export-tool</name>
19+
<description>Tool export query in CSV and other formats</description>
20+
<url>http://www.fugerit.org/java/</url>
21+
22+
<scm>
23+
<connection>scm:git:git://github.com/fugerit-org/query-export-tool.git</connection>
24+
<developerConnection>scm:git:ssh://github.com/fugerit-org/query-export-tool.git</developerConnection>
25+
<url>http://github.com/fugerit-org/query-export-tool/tree/master</url>
26+
</scm>
27+
28+
<properties>
29+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
30+
<java-version-compliance>8</java-version-compliance>
31+
<maven.compiler.source>${java-version-compliance}</maven.compiler.source>
32+
<maven.compiler.target>${java-version-compliance}</maven.compiler.target>
33+
<maven.compiler.release>${java-version-compliance}</maven.compiler.release>
34+
<!-- libraries versions -->
35+
<fj-version>8.3.8</fj-version>
36+
<opencsv-version>5.9</opencsv-version>
37+
</properties>
38+
39+
<licenses>
40+
<license>
41+
<name>Apache License, Version 2.0</name>
42+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
43+
<distribution>repo</distribution>
44+
</license>
45+
</licenses>
46+
47+
<developers>
48+
<developer>
49+
<name>Matteo a.k.a. Fugerit</name>
50+
<email>m@fugerit.org</email>
51+
<organization>Fugerit</organization>
52+
<organizationUrl>http://www.fugerit.org</organizationUrl>
53+
</developer>
54+
<developer>
55+
<name>Daneel</name>
56+
<email>d@fugerit.org</email>
57+
<organization>Fugerit</organization>
58+
<organizationUrl>http://www.fugerit.org</organizationUrl>
59+
</developer>
60+
</developers>
61+
62+
<distributionManagement>
63+
<snapshotRepository>
64+
<id>ossrh</id>
65+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
66+
</snapshotRepository>
67+
</distributionManagement>
68+
69+
<dependencies>
70+
71+
<dependency>
72+
<groupId>org.fugerit.java</groupId>
73+
<artifactId>fj-core</artifactId>
74+
<version>${fj-version}</version>
75+
</dependency>
76+
77+
<dependency>
78+
<groupId>com.opencsv</groupId>
79+
<artifactId>opencsv</artifactId>
80+
<version>${opencsv-version}</version>
81+
</dependency>
82+
83+
<dependency>
84+
<groupId>org.apache.poi</groupId>
85+
<artifactId>poi-ooxml</artifactId>
86+
<scope>provided</scope>
87+
</dependency>
88+
89+
<dependency>
90+
<groupId>org.slf4j</groupId>
91+
<artifactId>slf4j-simple</artifactId>
92+
<scope>test</scope>
93+
</dependency>
94+
95+
<dependency>
96+
<groupId>org.projectlombok</groupId>
97+
<artifactId>lombok</artifactId>
98+
<scope>provided</scope>
99+
</dependency>
100+
101+
<dependency>
102+
<groupId>org.hsqldb</groupId>
103+
<artifactId>hsqldb</artifactId>
104+
<scope>test</scope>
105+
</dependency>
106+
107+
<dependency>
108+
<groupId>junit</groupId>
109+
<artifactId>junit</artifactId>
110+
<scope>test</scope>
111+
</dependency>
112+
113+
</dependencies>
114+
115+
<profiles>
116+
117+
<profile>
118+
<id>singlepackage</id>
119+
<dependencies>
120+
<dependency>
121+
<groupId>org.apache.poi</groupId>
122+
<artifactId>poi-ooxml</artifactId>
123+
</dependency>
124+
<dependency>
125+
<groupId>org.apache.logging.log4j</groupId>
126+
<artifactId>log4j-api</artifactId>
127+
</dependency>
128+
<dependency>
129+
<groupId>org.apache.logging.log4j</groupId>
130+
<artifactId>log4j-core</artifactId>
131+
</dependency>
132+
<dependency>
133+
<groupId>org.apache.logging.log4j</groupId>
134+
<artifactId>log4j-slf4j2-impl</artifactId>
135+
</dependency>
136+
</dependencies>
137+
<build>
138+
<plugins>
139+
<plugin>
140+
<groupId>org.apache.maven.plugins</groupId>
141+
<artifactId>maven-jar-plugin</artifactId>
142+
<version>3.0.2</version>
143+
<configuration>
144+
<archive>
145+
<manifest>
146+
<addClasspath>true</addClasspath>
147+
<mainClass>org.fugerit.java.query.export.tool.QueryExportToolMain</mainClass>
148+
</manifest>
149+
</archive>
150+
</configuration>
151+
</plugin>
152+
<plugin>
153+
<groupId>org.apache.maven.plugins</groupId>
154+
<artifactId>maven-shade-plugin</artifactId>
155+
<version>3.1.0</version>
156+
<executions>
157+
<execution>
158+
<phase>package</phase>
159+
<goals>
160+
<goal>shade</goal>
161+
</goals>
162+
</execution>
163+
</executions>
164+
<configuration>
165+
<finalName>dist-${project.artifactId}-${project.version}</finalName>
166+
</configuration>
167+
</plugin>
168+
</plugins>
169+
</build>
170+
</profile>
171+
</profiles>
172+
173+
<organization>
174+
<url>http://www.fugerit.org</url>
175+
<name>Fugerit</name>
176+
</organization>
177+
178178
</project>

0 commit comments

Comments
 (0)