jin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.diablitozzz</groupId> <artifactId>jin</artifactId> <version>1.0.1</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> <groupId>org.diablitozzz</groupId> <artifactId>jin</artifactId> <version>1.0.1</version> <packaging>jar</packaging> <name>jin</name> <description>Jin is a small library, without the dependencies, that implements the dependency injection using annotations or XML. </description> <url>https://github.com/diablitozzz/jin</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/diablitozzz/jin</url> <connection>scm:git:https://github.com/diablitozzz/jin.git</connection> <developerConnection>scm:git:git@github.com:diablitozzz/jin.git</developerConnection> </scm> <developers> <developer> <id>owner</id> <name>Vladimir Ionov</name> <email>diablitozzz@gmail.com</email> <timezone>UTC+3</timezone> </developer> </developers> <organization> <name>diablitozzz.org</name> </organization> <dependencies> <!-- TESTING [begin] --> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.9.10</version> <scope>test</scope> </dependency> <dependency> <groupId>javassist</groupId> <artifactId>javassist</artifactId> <version>3.12.1.GA</version> <scope>test</scope> </dependency> <!-- TESTING [end] --> </dependencies> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <!-- nexus [begin] --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <!-- nexus [end] --> <!-- tests [begin] --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.19.1</version> <configuration> <skip>false</skip> </configuration> </plugin> <!-- tests [end] --> <!-- compiler [begin] --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.0</version> <configuration> <source>1.7</source> <target>1.7</target> <optimize>true</optimize> <debug>false</debug> </configuration> </plugin> <!-- compiler [end] --> <!-- source [begin] --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- source [end] --> <!-- javadoc [begin] --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> <configuration> <charset>UTF-8</charset> <reportOutputDirectory>${basedir}</reportOutputDirectory> <show>public</show> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- javadoc [end] --> <!-- gpg [begin] --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!-- gpg [end] --> </plugins> <resources> <resource> <directory>${project.basedir}/src/main/resources</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> <!-- xsd begin --> <resource> <targetPath>org/diablitozzz/jin/xml</targetPath> <directory>${project.basedir}</directory> <includes> <include>jin-1.0.xsd</include> </includes> </resource> <!-- xsd end --> </resources> <testResources> <testResource> <directory>${project.basedir}/src/test/resources</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </testResource> </testResources> </build> </project>