Maven Central Repository

oitc-textproc

Used in 0 components

Overview

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.

Snippets

<dependency>
    <groupId>de.oberdorf-itc</groupId>
    <artifactId>oitc-textproc</artifactId>
    <version>0.7.0</version>
</dependency>

Maven POM File

<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.7.0</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>11</jdk.version>
  </properties>
  <dependencies>
    <!-- JUnit Tests -->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>commons-codec</groupId>
      <artifactId>commons-codec</artifactId>
      <version>1.9</version>
    </dependency>
  </dependencies>
  <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.sonarsource.scanner.maven</groupId>
          <artifactId>sonar-maven-plugin</artifactId>
          <version>3.3.0.603</version>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-compiler-plugin</artifactId>
          <version>3.8.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.0.2</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.0.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.2.0</version>
          <configuration>
            <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
          </configuration>
          <executions>
            <execution>
              <id>attach-javadocs</id>
              <goals>
                <goal>jar</goal>
              </goals>
              <configuration>
                <!--  failOnError>false</failOnError -->
                <additionalparam>-Xdoclint:none</additionalparam>
              </configuration>
            </execution>
          </executions>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-gpg-plugin</artifactId>
          <version>1.6</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>http://www.oberdorf-itc.de/</url>
      <organizationUrl>http://www.oberdorf-itc.de/</organizationUrl>
    </developer>
  </developers>
  <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>