okyline
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.akwatype</groupId>
<artifactId>okyline</artifactId>
<version>1.0.0</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/maven-v4_0_0.xsd">
<parent>
<artifactId>okyline-schema-parent</artifactId>
<groupId>org.akwatype</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>io.akwatype</groupId>
<artifactId>okyline</artifactId>
<name>Okyline Schema API</name>
<version>1.0.0</version>
<description>Simple and powerful JSON schema validation library for Java applications</description>
<url>https://okyline.io</url>
<developers>
<developer>
<id>pmb</id>
<name>Pierre-Michel Bret</name>
<email>contact@akwatype.io</email>
<organization>Akwatype</organization>
<organizationUrl>https://akwatype.io</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>Okyline Free License 1.0.0</name>
<url>https://public-docs.okyline.io/licenses/Okyline-Free-Licence-1.0.0.txt</url>
<distribution>repo</distribution>
<comments>Proprietary license - see LICENSE.txt in JAR for full terms</comments>
</license>
</licenses>
<scm>
<url>https://akwatype.io</url>
</scm>
<organization>
<name>Akwatype</name>
<url>https://akwatype.io</url>
</organization>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<relocations>
<relocation>
<pattern>org.akwatype.okyline.core</pattern>
<shadedPattern>org.akwatype.okyline.internal.core</shadedPattern>
</relocation>
<relocation>
<pattern>org.akwatype.okyline.common</pattern>
<shadedPattern>org.akwatype.okyline.internal.common</shadedPattern>
</relocation>
<relocation>
<pattern>org.akwatype.impl</pattern>
<shadedPattern>org.akwatype.okyline.internal.impl</shadedPattern>
</relocation>
<relocation>
<pattern>org.akwatype.okyline.expression</pattern>
<shadedPattern>org.akwatype.okyline.internal.expression</shadedPattern>
</relocation>
</relocations>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/maven/org.akwatype/**</exclude>
<exclude>META-INF/maven/archetype.xml</exclude>
<exclude>archetype-resources/**</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>obfuscate-lib-with-yguard</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<taskdef />
<yguard>
<inoutpair />
<property />
<rename>
<keep>
<class>
<patternset>
<include />
</patternset>
</class>
</keep>
<property />
</rename>
</yguard>
<delete />
<move />
</target>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.yworks</groupId>
<artifactId>yguard</artifactId>
<version>4.1.1</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.10.13</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-launcher</artifactId>
<version>1.10.13</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</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.6.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<sourceFileIncludes>
<include>**/api/*.java</include>
</sourceFileIncludes>
<failOnError>false</failOnError>
<doclint>none</doclint>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>C:\Program Files (x86)\GnuPG\bin\gpg.exe</executable>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.6.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>false</autoPublish>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<properties>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>