tengxun
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cn.gjing</groupId> <artifactId>tengxun</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> <parent> <groupId>cn.gjing</groupId> <artifactId>tools</artifactId> <version>1.1.7</version> </parent> <artifactId>tengxun</artifactId> <version>1.0.1</version> <name>tengxun</name> <description>tengxun tool</description> <properties> <java.version>1.8</java.version> </properties> <dependencies> <!--腾讯短信--> <dependency> <groupId>com.github.qcloudsms</groupId> <artifactId>qcloudsms</artifactId> <version>1.0.6</version> <exclusions> <exclusion> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>cn.gjing</groupId> <artifactId>common</artifactId> <exclusions> <exclusion> <artifactId>commons-codec</artifactId> <groupId>commons-codec</groupId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <!-- <plugin>--> <!-- <!–跳过发布–>--> <!-- <groupId>org.apache.maven.plugins</groupId>--> <!-- <artifactId>maven-deploy-plugin</artifactId>--> <!-- <configuration>--> <!-- <skip>true</skip>--> <!-- </configuration>--> <!-- </plugin>--> </plugins> </build> </project>