wechaty_2.12
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.wechaty</groupId>
<artifactId>wechaty_2.12</artifactId>
<version>0.0.15</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/maven-v4_0_0.xsd">
<parent>
<groupId>io.github.wechaty</groupId>
<artifactId>wechaty-project_2.12</artifactId>
<version>0.0.15</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wechaty_2.12</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>io.github.wechaty</groupId>
<artifactId>wechaty-puppet-hostie_${scala-binary-version}</artifactId>
</dependency>
<dependency>
<groupId>io.github.wechaty</groupId>
<artifactId>wechaty-puppet-padplus_${scala-binary-version}</artifactId>
</dependency>
<dependency>
<groupId>org.grpcmock</groupId>
<artifactId>grpcmock-junit5</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.spotify</groupId>
<artifactId>dockerfile-maven-plugin</artifactId>
<!--
<executions>
<execution>
<id>default</id>
<phase>verify</phase>
<goals>
<goal>build</goal>
<goal>push</goal>
</goals>
</execution>
</executions>
-->
<configuration>
<repository>docker.pkg.github.com/wechaty/scala-wechaty/ding-dong-bot</repository>
<tag>${project.version}</tag>
<buildArgs>
<JAR_FILE>${project.build.finalName}.jar</JAR_FILE>
</buildArgs>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>run</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<configuration>
<skip>false</skip>
<mainClass>wechaty.DingDongBot</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>run-pad</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<configuration>
<skip>false</skip>
<mainClass>wechaty.DingDongPadplusBot</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>