java-data-url-handler
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.jycr</groupId>
<artifactId>java-data-url-handler</artifactId>
<version>0.0.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.jycr</groupId>
<artifactId>java-data-url-handler</artifactId>
<version>0.0.1</version>
<name>Java data url handler</name>
<description>Java "data" URL scheme handler.
</description>
<url>https://github.com/jycr/java-data-url-handler</url>
<inceptionYear>2024</inceptionYear>
<organization>
<name>jycr</name>
<url>https://github.com/jycr</url>
</organization>
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/license/mit</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>JY Cr</name>
<email>jycr@users.noreply.github.com</email>
<organization>jycr</organization>
<organizationUrl>https://github.com/jycr</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/jycr/java-data-url-handler</connection>
<developerConnection>scm:git:https://github.com/jycr/java-data-url-handler</developerConnection>
<url>https://github.com/jycr/java-data-url-handler</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/jycr/java-data-url-handler/issues</url>
</issueManagement>
<properties>
<maven.compiler.release>11</maven.compiler.release>
<maven.compiler.encoding>${project.build.sourceEncoding}</maven.compiler.encoding>
<staging.autoReleaseAfterClose>true</staging.autoReleaseAfterClose>
<maven.compiler.source>${maven.compiler.release}</maven.compiler.source>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.java.source>${maven.compiler.source}</sonar.java.source>
<additionalTestArgLine>-Dfile.encoding=${project.build.sourceEncoding}</additionalTestArgLine>
<sonar.organization>jycr</sonar.organization>
<project.reporting.outputEncoding>${project.build.sourceEncoding}</project.reporting.outputEncoding>
<revision>9999-SNAPSHOT</revision>
<sonar.java.target>${maven.compiler.target}</sonar.java.target>
<maven.compiler.target>${maven.compiler.release}</maven.compiler.target>
<sonar.projectKey>jycr_java-data-url-handler</sonar.projectKey>
<project.build.outputTimestamp>${git.commit.timestamp.datetime}</project.build.outputTimestamp>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.10.2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.26.3</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<id>enforce-project-requirements</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireJavaVersion>
<version>11</version>
</requireJavaVersion>
<requireMavenVersion>
<version>3.8</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<compilerArgs>
<arg>-Xlint:all</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.12</version>
<executions>
<execution>
<id>jacoco-tu</id>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<propertyName>utCoverageAgent</propertyName>
</configuration>
</execution>
<execution>
<id>jacoco-ti</id>
<goals>
<goal>prepare-agent-integration</goal>
</goals>
<configuration>
<propertyName>itCoverageAgent</propertyName>
</configuration>
</execution>
<execution>
<id>jacoco-report</id>
<goals>
<goal>report</goal>
<goal>report-integration</goal>
</goals>
<configuration>
<formats>
<format>XML</format>
</formats>
</configuration>
</execution>
<execution>
<id>jacoco-report-aggregate</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
<executions>
<execution>
<id>default-test</id>
<goals>
<goal>test</goal>
</goals>
<configuration>
<argLine>${additionalTestArgLine} ${utCoverageAgent}</argLine>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.2.5</version>
<executions>
<execution>
<configuration>
<argLine>${additionalTestArgLine} ${itCoverageAgent}</argLine>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.8.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>sign-artifacts</id>
<activation>
<property>
<name>env.MAVEN_GPG_PASSPHRASE</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>maven-central-publishing</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.7.0</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org</nexusUrl>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
</profile>
</profiles>
</project>