timestamp-utc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.evolvis.tartools</groupId>
<artifactId>timestamp-utc</artifactId>
<version>1.12</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.evolvis.tartools.maven-parent</groupId>
<artifactId>pom</artifactId>
<version>3.1</version>
</parent>
<groupId>org.evolvis.tartools</groupId>
<artifactId>timestamp-utc</artifactId>
<version>1.12</version>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>TIMESTAMP WITHOUT TIME ZONE mapping as UTC</description>
<url>https://evolvis.org/plugins/scmgit/cgi-bin/gitweb.cgi?p=tartools/tsutc.git</url>
<licenses>
<license>
<name>GNU Lesser General Public License (LGPL), version 2.1 or later</name>
<url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html</url>
</license>
</licenses>
<developers>
<developer>
<name>mirabilos</name>
<email>t.glaser@qvest-digital.com</email>
<organization>QVEST ⮡ dıgıtal</organization>
<organizationUrl>https://qvest-digital.com/</organizationUrl>
</developer>
</developers>
<properties>
<archiver.copyright.firstyear>2016</archiver.copyright.firstyear>
<archiver.copyright.lastyear>2020</archiver.copyright.lastyear>
<archiver.copyright>Copyright © 2016, 2018, 2020 mirabilos; Licensor: Qvest Digital AG, Bonn, Germany</archiver.copyright>
<sonar.sources>src/main</sonar.sources>
<sonar.tests>src/test</sonar.tests>
<!-- ‣ dependencies -->
<hibernate.version>5.3.36.Final</hibernate.version>
<javax.persistence.version>2.2.3</javax.persistence.version>
<jaxb-api.version>2.3.3</jaxb-api.version>
<!-- ‣ testing -->
<junit.version>4.13.2</junit.version>
<h2.version>2.2.224</h2.version>
<!-- ‣ maven plugins -->
<maven.owasp.dependency-check.version>9.1.0</maven.owasp.dependency-check.version>
<!-- ‣ release management -->
<project.build.outputTimestamp>2024-05-10T17:40:26Z</project.build.outputTimestamp>
</properties>
<scm>
<connection>scm:git:https://evolvis.org/anonscm/git/tartools/tsutc.git</connection>
<developerConnection>scm:git:ssh://maven@evolvis.org/scmrepos/git/tartools/tsutc.git</developerConnection>
<url>https://evolvis.org/plugins/scmgit/cgi-bin/gitweb.cgi?p=tartools/tsutc.git</url>
<tag>timestamp-utc-1.12</tag>
</scm>
<dependencies>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>${h2.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jakarta.persistence</groupId>
<artifactId>jakarta.persistence-api</artifactId>
<version>${javax.persistence.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>${jaxb-api.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>${hibernate.version}</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>javax.activation</groupId>
<artifactId>javax.activation-api</artifactId>
</exclusion>
<exclusion>
<groupId>javax.persistence</groupId>
<artifactId>javax.persistence-api</artifactId>
</exclusion>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<!-- mvn -Ddependency-check.skip … -->
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>${maven.owasp.dependency-check.version}</version>
<inherited>false</inherited>
<executions>
<execution>
<id>owasp-check</id>
<phase>install</phase>
<goals>
<goal>aggregate</goal>
</goals>
<configuration>
<failBuildOnCVSS>8</failBuildOnCVSS>
<scanSet>
<fileSet>
<directory>src</directory>
</fileSet>
</scanSet>
<skipArtifactType>pom</skipArtifactType>
<!-- suppressionFiles>
<suppressionFile>src/main/ancillary/dependency-check-suppressions.xml</suppressionFile>
</suppressionFiles -->
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<inherited>false</inherited>
<executions>
<execution>
<id>dep-check</id>
<phase>install</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>src/main/ancillary/ckdep.sh</executable>
<environmentVariables>
<CKDEP_RUN_FROM_MAVEN>true</CKDEP_RUN_FROM_MAVEN>
</environmentVariables>
<useMavenLogger>true</useMavenLogger>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>analyse-dependency-usage</id>
<configuration>
<ignoredUnusedDeclaredDependencies combine.children="append">
<!-- used by the tests -->
<ignoredUnusedDeclaredDependency>com.h2database:h2</ignoredUnusedDeclaredDependency>
<ignoredUnusedDeclaredDependency>jakarta.xml.bind:jakarta.xml.bind-api</ignoredUnusedDeclaredDependency>
</ignoredUnusedDeclaredDependencies>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>