<?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"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.microsofia</groupId> <artifactId>microsofia-boot</artifactId> <name>microsofia-boot</name> <version>1.0</version> <description>Simple ClassLoader based on Eclipse Aether</description> <url>https://github.com/microsofia/microsofia-boot</url> <developers> <developer> <name>chacha</name> <email>chachaparis@gmail.com</email> <organization>charb</organization> <organizationUrl>https://github.com/charb</organizationUrl> </developer> </developers> <licenses> <license> <name>Apache 2.0</name> <url>https://github.com/microsofia/microsofia-boot/blob/master/LICENSE</url> </license> </licenses> <scm> <connection>scm:git:git@github.com:microsofia/microsofia-boot.git</connection> <developerConnection>scm:git:git@github.com:microsofia/microsofia-boot.git</developerConnection> <url>https://github.com/microsofia/microsofia-boot.git</url> </scm> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.5</version> <configuration> <encoding>cp1252</encoding> <source>1.8</source> <target>1.8</target> <fork>true</fork> <meminitial>128m</meminitial> <maxmem>512m</maxmem> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>2.4.3</version> <executions> <execution> <phase>verify</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <relocations> <relocation> <pattern>org</pattern> <shadedPattern>microsofia.org</shadedPattern> <excludes> <exclude>org.w3c.*</exclude> </excludes> </relocation> <relocation> <pattern>com</pattern> <shadedPattern>microsofia.com</shadedPattern> </relocation> </relocations> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>boot-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <inherited>false</inherited> </execution> </executions> <configuration> <descriptors> <descriptor>src/assembly/bin.xml</descriptor> </descriptors> <finalName>microsofia-boot-${project.version}</finalName> <appendAssemblyId>false</appendAssemblyId> <archive> <manifestEntries> <Main-Class>microsofia.boot.Main</Main-Class> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <aetherVersion>1.1.0</aetherVersion> <mavenVersion>3.3.9</mavenVersion> <wagonVersion>2.10</wagonVersion> </properties> </project>
<dependency> <groupId>com.github.microsofia</groupId> <artifactId>microsofia-boot</artifactId> <version>1.0</version> </dependency>
com.github.microsofia:microsofia-boot:1.0