pb162-csv-parser
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.cechacek.edu</groupId> <artifactId>pb162-csv-parser</artifactId> <version>0.5.0-final</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.cechacek.edu</groupId> <artifactId>pb162-csv-parser</artifactId> <version>0.5.0-final</version> <name>Simple CSV Parser</name> <description>Simple CSV Parser used as example maven dependency in pb162 course at FI MU.</description> <url>https://github.com/jcechace/pb162-csv-parser</url> <packaging>jar</packaging> <scm> <connection>scm:git:https://github.com/jcechace/pb162-csv-parser.git</connection> <developerConnection>scm:git:git@github.com:jcechace/pb162-csv-parser.git</developerConnection> <url>https://github.com/jcechace/pb162-csv-parser</url> </scm> <developers> <developer> <id>jcechace</id> <name>Jakub Cechacek</name> <email>jakub@cechacek.net</email> </developer> </developers> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- dependency versions --> <version.plugin.surefire>2.22.2</version.plugin.surefire> <version.plugin.checkstyle>3.1.2</version.plugin.checkstyle> <version.plugin.source>3.3.1</version.plugin.source> <version.plugin.javadoc>3.6.3</version.plugin.javadoc> <version.plugin.central-publishing>0.4.0</version.plugin.central-publishing> <version.plugin.gpg>3.2.4</version.plugin.gpg> <version.junit.jupiter>5.8.2</version.junit.jupiter> <version.assertj>3.22.0</version.assertj> <version.jcommander>1.82</version.jcommander> <version.system-labda>1.2.1</version.system-labda> <version.mockito>5.11.0</version.mockito> </properties> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${version.junit.jupiter}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${version.assertj}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${version.mockito}</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>release</id> <build> <plugins> <!-- Sign components --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${version.plugin.gpg}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!-- Include javadocs --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${version.plugin.javadoc}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <notimestamp>true</notimestamp> </configuration> </plugin> <!-- Publish artifacts --> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${version.plugin.central-publishing}</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <tokenAuth>true</tokenAuth> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <!-- Include sources --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${version.plugin.source}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- surefire Config --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> <configuration> <useSystemClassLoader>false</useSystemClassLoader> </configuration> </plugin> <!-- Checkstyle Plugin Configuration --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${version.plugin.checkstyle}</version> <configuration> <configLocation>checkstyle.xml</configLocation> <encoding>UTF-8</encoding> <consoleOutput>true</consoleOutput> <failsOnError>true</failsOnError> <linkXRef>false</linkXRef> </configuration> <executions> <execution> <id>validate</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>