thread
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.houbb</groupId> <artifactId>thread</artifactId> <version>1.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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.houbb</groupId> <artifactId>thread</artifactId> <packaging>pom</packaging> <version>1.0</version> <!--============================== ADD For sonatype START ==============================--> <name>thread</name> <description>thread4j</description> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <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/houbb/thread</url> <connection>https://github.com/houbb/thread.git</connection> <developerConnection>https://houbb.github.io/</developerConnection> </scm> <developers> <developer> <name>houbb</name> <email>houbinbin.echo@gmail.com</email> <url>https://houbb.github.io/</url> </developer> </developers> <!--============================== ADD For sonatype END ==============================--> <properties> <!--============================== All Plugins START ==============================--> <plugin.compiler.version>3.2</plugin.compiler.version> <plugin.compiler.version>3.2</plugin.compiler.version> <plugin.surefire.version>2.18.1</plugin.surefire.version> <plugin.surefire.skip-it>true</plugin.surefire.skip-it> <plugin.surefire.ignore-failure>true</plugin.surefire.ignore-failure> <!--============================== MAIN ==============================--> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <compiler.level>1.8</compiler.level> <!--============================== OTHER ==============================--> <log4j2.api.version>2.5</log4j2.api.version> <junit.version>4.12</junit.version> </properties> <dependencyManagement> <dependencies> <!--============================== SELF ==============================--> <!--============================== OTHER ==============================--> <!--log4j2--> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>${log4j2.api.version}</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>${log4j2.api.version}</version> </dependency> <!--test--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> </dependency> </dependencies> </dependencyManagement> <profiles> <profile> <id>release</id> <build> <plugins> <!-- Source --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- Javadoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- GPG --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>oss</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>oss</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </profile> </profiles> <build> <plugins> <!--compiler plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${plugin.compiler.version}</version> <configuration> <source>${compiler.level}</source> <target>${compiler.level}</target> <encoding>${project.build.sourceEncoding}</encoding> <compilerArgument>-proc:none</compilerArgument> </configuration> </plugin> </plugins> </build> </project>