aide
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>tech.hiddenproject</groupId>
<artifactId>aide</artifactId>
<version>1.3</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<artifactId>aide</artifactId>
<build>
<defaultGoal>package</defaultGoal>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<doclint>none</doclint>
<excludePackageNames>tech.hiddenproject.aide.example:tech.hiddenproject.aide.example.*</excludePackageNames>
<source>1.8</source>
</configuration>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
<id>attach-javadoc</id>
</execution>
<execution>
<goals>
<goal>aggregate</goal>
</goals>
<id>aggregate</id>
<phase>site</phase>
</execution>
</executions>
<groupId>org.apache.maven.plugins</groupId>
<version>3.3.0</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<index>true</index>
<manifest>
<addClasspath>true</addClasspath>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
</archive>
<includes>
<include>tech/hiddenproject/aide/*.*</include>
<include>tech/hiddenproject/aide/*/*.*</include>
<include>tech/hiddenproject/aide/*/*/*.*</include>
</includes>
</configuration>
<groupId>org.apache.maven.plugins</groupId>
<version>3.2.0</version>
</plugin>
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<configuration>
<mainClass>tech.hiddenproject.aide.example.Main</mainClass>
</configuration>
<groupId>org.codehaus.mojo</groupId>
<version>1.2.1</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>*.java</include>
</includes>
</configuration>
<groupId>org.apache.maven.plugins</groupId>
<version>3.0.0-M5</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
<groupId>org.apache.maven.plugins</groupId>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<configuration>
<includes>
<include>tech/hiddenproject/aide/*.*</include>
<include>tech/hiddenproject/aide/*/*.*</include>
<include>tech/hiddenproject/aide/*/*/*.*</include>
</includes>
</configuration>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
<id>attach-sources</id>
</execution>
</executions>
<groupId>org.apache.maven.plugins</groupId>
<version>3.0.1</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<artifactId>junit-jupiter-api</artifactId>
<groupId>org.junit.jupiter</groupId>
<scope>test</scope>
<version>5.8.1</version>
</dependency>
<dependency>
<artifactId>mockito-core</artifactId>
<groupId>org.mockito</groupId>
<scope>test</scope>
<version>4.11.0</version>
</dependency>
</dependencies>
<description>Aide provides useful tools such as reflection utils, extended optionals, conditional</description>
<developers>
<developer>
<email>danilarassokhin@gmail.com</email>
<name>Danila Rassokhin</name>
<url>hiddenproject.tech</url>
</developer>
</developers>
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<groupId>tech.hiddenproject</groupId>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<modelVersion>4.0.0</modelVersion>
<modules>
<module>aide-reflection</module>
<module>aide-optional</module>
<module>aide-all</module>
</modules>
<name>${project.groupId}:${project.artifactId}</name>
<packaging>pom</packaging>
<profiles>
<profile>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>sign</goal>
</goals>
<id>sign-artifacts</id>
<phase>verify</phase>
</execution>
</executions>
<groupId>org.apache.maven.plugins</groupId>
<version>3.0.1</version>
</plugin>
<plugin>
<artifactId>nexus-staging-maven-plugin</artifactId>
<configuration>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<serverId>ossrh</serverId>
</configuration>
<extensions>true</extensions>
<groupId>org.sonatype.plugins</groupId>
<version>1.6.13</version>
</plugin>
</plugins>
</build>
<id>deploy</id>
</profile>
</profiles>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<scm>
<connection>scm:git:git:/github.com/CrissNamon/aide.git</connection>
<developerConnection>scm:git:ssh://github.com:CrissNamon/aide.git</developerConnection>
<url>https://github.com/CrissNamon/aide/tree/main</url>
</scm>
<url>https://github.com/CrissNamon/aide</url>
<version>1.3</version>
</project>