组织ID: |
com.github.shyiko.ktlint |
项目ID: |
ktlint-reporter-checkstyle |
版本: |
0.10.0 |
最后修改时间: |
2019-12-06 16:35:42 |
包类型: |
jar |
标题: |
deploy |
大小: |
8.50KB |
|
Maven引入代码: |
<dependency>
<groupId>com.github.shyiko.ktlint</groupId>
<artifactId>ktlint-reporter-checkstyle</artifactId>
<version>0.10.0</version>
</dependency>
|
Gradle引入代码: |
com.github.shyiko.ktlint:ktlint-reporter-checkstyle:0.10.0
|
下载Jar包: |
|
POM文件内容: |
<?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>com.github.shyiko.ktlint</groupId>
<artifactId>pom</artifactId>
<version>0.10.0</version>
</parent>
<artifactId>ktlint-reporter-checkstyle</artifactId>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.shyiko.ktlint</groupId>
<artifactId>ktlint-core</artifactId>
<version>0.10.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
<testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
</build>
<profiles>
<profile>
<id>release</id>
<activation>
<property>
<name>deploy</name>
<value>maven-central</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
<classesDirectory>${basedir}/javadoc</classesDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/services/com.github.shyiko.ktlint.core.ReporterProvider
com.github.shyiko.ktlint.reporter.checkstyle.CheckStyleReporterProvider.class
com.github.shyiko.ktlint.reporter.checkstyle.CheckStyleReporter.class
com.github.shyiko.ktlint.reporter.checkstyle.CheckStyleReporter$afterAll$$inlined$sortedBy$1.class
META-INF/maven/com.github.shyiko.ktlint/ktlint-reporter-checkstyle/pom.xml
META-INF/maven/com.github.shyiko.ktlint/ktlint-reporter-checkstyle/pom.properties
|
依赖Jar: |
kotlin-stdlib-${kotlin.version}.jar
/org.jetbrains.kotlin/kotlin-stdlib/${kotlin.version}
查看kotlin-stdlib所有版本文件
ktlint-core-0.10.0.jar
/com.github.shyiko.ktlint/ktlint-core/0.10.0
查看ktlint-core所有版本文件
testng-${testng.version}.jar
/org.testng/testng/${testng.version}
查看testng所有版本文件
assertj-core-${assertj.version}.jar
/org.assertj/assertj-core/${assertj.version}
查看assertj-core所有版本文件
|