oitc-textproc
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.oberdorf-itc</groupId> <artifactId>oitc-textproc</artifactId> <version>0.8.1.1674</version> </dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.oberdorf-itc</groupId> <artifactId>oitc-textproc</artifactId> <packaging>jar</packaging> <version>0.8.1.1674</version> <name>${project.groupId}:${project.artifactId}</name> <url>https://www.oberdorf-itc.de/</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jdk.version>21</jdk.version> </properties> <dependencies> <!-- JUnit Tests --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.10.2</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.17.0</version> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>3.11.0.3922</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.4.1</version> <configuration> <!-- https://maven.apache.org/shared/maven-archiver/ --> <archive> <addMavenDescriptor>false</addMavenDescriptor> <compress>true</compress> <forced>true</forced> <index>false</index> <manifest> <addClasspath>false</addClasspath> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addExtensions>false</addExtensions> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <configuration> <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration /> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>${gpg.keyname}</keyname> <passphraseServerId>${gpg.keyname}</passphraseServerId> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> <organization> <name>Michael Oberdorf IT-Consulting</name> <url>https://www.oberdorf-itc.de/</url> </organization> <developers> <developer> <id>Cybcon</id> <name>Michael Oberdorf</name> <email>info@oberdorf-itc.de</email> <organization>Michael Oberdorf IT-Consulting</organization> <url>https://www.oberdorf-itc.de/</url> <organizationUrl>https://www.oberdorf-itc.de/</organizationUrl> </developer> </developers> <issueManagement > <system>Azure DevOps</system> <url>https://dev.azure.com/oberdorf-itc/Access%20Control%20System/_backlogs/backlog/Access%20Control%20System%20Team/Epics</url> </issueManagement> <repositories> <repository> <id>oberdorf-itc</id> <url>https://pkgs.dev.azure.com/oberdorf-itc/_packaging/oberdorf-itc/maven/v1</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <distributionManagement> <repository> <id>ossrh</id> <name>OSSRH Nexus Staging Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>ossrh</id> <name>OSSRH Nexus Snapshot Repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <scm> <connection>scm:git:https://dev.azure.com/oberdorf-itc/Access%20Control%20System/_git/de.oberdorf-itc.textproc</connection> <developerConnection>scm:git:ssh://ssh.dev.azure.com:v3/oberdorf-itc/Access%20Control%20System/de.oberdorf-itc.textproc</developerConnection> <url>https://dev.azure.com/oberdorf-itc/Access%20Control%20System/_git/de.oberdorf-itc.textproc</url> </scm> <ciManagement /> <description>This library is a summary of helper classes for textprocessing. In detail it covers a class to read configuration files, a class to find a needle within a haystack, a class for cryptographic methods a very helpfull class to do some type conversions and a small helper class to generate timestamp strings.</description> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> </project>