aka-common-smssend
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.ulwx</groupId>
<artifactId>aka-common-smssend</artifactId>
<version>2.1</version>
</dependency><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> <artifactId>aka-common-smssend</artifactId> <packaging>jar</packaging> <name>aka-common-smssend</name> <parent> <groupId>com.github.ulwx</groupId> <artifactId>aka-common-parent</artifactId> <version>2.1</version> </parent> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <excludes> <exclude>log*.xml</exclude> <exclude>log*.properties</exclude> </excludes> <archive> <manifest> <useUniqueVersions>false</useUniqueVersions> </manifest> </archive> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <artifactId>aka-dbutils</artifactId> <groupId>com.github.ulwx</groupId> </dependency> <dependency> <artifactId>aka-common-tool</artifactId> <groupId>com.github.ulwx</groupId> </dependency> <dependency> <artifactId>aka-common-webvc</artifactId> <groupId>com.github.ulwx</groupId> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.23</version> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>tomcat-jdbc</artifactId> <version>9.0.45</version> </dependency> </dependencies> </project>