组织ID: |
com.github.shyiko |
项目ID: |
ktlint |
版本: |
0.5.1 |
最后修改时间: |
2019-11-01 04:38:23 |
包类型: |
jar |
标题: |
deploy |
描述: |
${project.version} |
大小: |
55.14KB |
|
Maven引入代码: |
<dependency>
<groupId>com.github.shyiko</groupId>
<artifactId>ktlint</artifactId>
<version>0.5.1</version>
</dependency>
|
Gradle引入代码: |
com.github.shyiko:ktlint:0.5.1
|
下载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.5.1</version>
</parent>
<!-- keeping original (pre 0.2.0) qualifier (com.github.shyiko:ktlint) so that no one would notice a thing -->
<groupId>com.github.shyiko</groupId>
<artifactId>ktlint</artifactId>
<scm>
<connection>scm:git:git@github.com:shyiko/ktlint.git</connection>
<developerConnection>scm:git:git@github.com:shyiko/ktlint.git</developerConnection>
<url>git@github.com:shyiko/ktlint.git</url>
</scm>
<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.5.1</version>
</dependency>
<dependency>
<groupId>com.github.shyiko.ktlint</groupId>
<artifactId>ktlint-ruleset-standard</artifactId>
<version>0.5.1</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-aether-provider</artifactId>
<version>${aether.maven.provider.version}</version>
</dependency>
<!-- maven-aether-provider's transitive dependency -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
</dependency>
<dependency>
<groupId>org.eclipse.aether</groupId>
<artifactId>aether-api</artifactId>
<version>${aether.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.aether</groupId>
<artifactId>aether-spi</artifactId>
<version>${aether.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.aether</groupId>
<artifactId>aether-util</artifactId>
<version>${aether.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.aether</groupId>
<artifactId>aether-impl</artifactId>
<version>${aether.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.aether</groupId>
<artifactId>aether-connector-basic</artifactId>
<version>${aether.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.aether</groupId>
<artifactId>aether-transport-file</artifactId>
<version>${aether.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.aether</groupId>
<artifactId>aether-transport-http</artifactId>
<version>${aether.version}</version>
</dependency>
<!-- used to silence aether-transport-http -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
<version>1.6.2</version>
</dependency>
<dependency>
<groupId>args4j</groupId>
<artifactId>args4j</artifactId>
<version>${args4j.version}</version>
</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>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>ktlint</id>
<phase>verify</phase>
<configuration>
<target name="ktlint">
<java dir="${basedir}${file.separator}.."
classname="com.github.shyiko.ktlint.Main"
classpathref="maven.runtime.classpath"
fork="true"
failonerror="true"
taskname="lint"/>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>ktlint-format</id>
<configuration>
<target name="ktlint">
<java dir="${basedir}${file.separator}.."
classname="com.github.shyiko.ktlint.Main"
classpathref="maven.runtime.classpath"
fork="true"
failonerror="true"
taskname="format">
<arg value="-F"/>
</java>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</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>
<profile>
<id>capsule</id>
<activation>
<property>
<name>deploy</name>
<value>github</value>
</property>
</activation>
<build>
<defaultGoal>clean deploy</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer implementation=
"org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
<transformer implementation=
"org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.github.shyiko.ktlint.Main</mainClass>
</transformer>
</transformers>
<shadedArtifactAttached>true</shadedArtifactAttached>
<createDependencyReducedPom>false</createDependencyReducedPom>
<!--<minimizeJar>true</minimizeJar>-->
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
<filter>
<artifact>org.jetbrains.kotlin:kotlin-compiler-embeddable</artifact>
<includes>
<include>**</include>
</includes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.skife.maven</groupId>
<artifactId>really-executable-jar-maven-plugin</artifactId>
<version>1.4.1</version>
<configuration>
<!--
-XX:+TieredCompilation can be used to speed things up but it was reported to cause
OOMs and all sort of problems depending on which version of jre6 is used
-->
<flags>-Xmx512m</flags>
<programFile>ktlint</programFile>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>really-executable-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>deploy-to-github</id>
<activation>
<property>
<name>deploy</name>
<value>github</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>de.jutzig</groupId>
<artifactId>github-release-plugin</artifactId>
<version>1.1.1</version>
<configuration>
<description>${project.version}</description>
<releaseName>${project.version}</releaseName>
<tag>${project.version}</tag>
<artifact>${project.build.directory}/${project.artifactId}</artifact>
</configuration>
<executions>
<execution>
<phase>deploy</phase>
<goals>
<goal>release</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/ktlint.kotlin_module
com.github.shyiko.ktlint.Main$main$5$formattedFileContent$2.class
com.github.shyiko.ktlint.Main$parallel$pill$1.class
com.github.shyiko.ktlint.Main$main$5.class
com.github.shyiko.ktlint.Main$main$parser$1.class
com.github.shyiko.ktlint.Main$main$6.class
com.github.shyiko.ktlint.Main$main$6$2.class
com.github.shyiko.ktlint.Main$main$6$1.class
com.github.shyiko.ktlint.Main$main$5$2.class
com.github.shyiko.ktlint.internal.path.Glob.class
com.github.shyiko.ktlint.internal.path.Glob$State.class
com.github.shyiko.ktlint.Main$main$1.class
com.github.shyiko.ktlint.Main$visit$1.class
META-INF/maven/com.github.shyiko/ktlint/pom.properties
com.github.shyiko.ktlint.Main.class
com.github.shyiko.ktlint.internal.path.PackageKt$or$1.class
com.github.shyiko.ktlint.internal.path.PackageKt$and$1.class
com.github.shyiko.ktlint.internal.MavenDependencyResolver.class
META-INF/maven/com.github.shyiko/ktlint/pom.xml
com.github.shyiko.ktlint.Main$main$4.class
com.github.shyiko.ktlint.Main$parallel$consumer$1.class
com.github.shyiko.ktlint.internal.path.PackageKt.class
com.github.shyiko.ktlint.internal.path.HiddenFileFilter.class
com.github.shyiko.ktlint.internal.path.GlobFileFilter.class
com.github.shyiko.ktlint.internal.path.Glob$Companion.class
com.github.shyiko.ktlint.internal.MavenDependencyResolver$setTransferEventListener$1.class
com.github.shyiko.ktlint.Main$main$6$1$1.class
com.github.shyiko.ktlint.Main$main$$inlined$sortedBy$1.class
|
依赖Jar: |
kotlin-stdlib-${kotlin.version}.jar
/org.jetbrains.kotlin/kotlin-stdlib/${kotlin.version}
查看kotlin-stdlib所有版本文件
ktlint-core-0.5.1.jar
/com.github.shyiko.ktlint/ktlint-core/0.5.1
查看ktlint-core所有版本文件
ktlint-ruleset-standard-0.5.1.jar
/com.github.shyiko.ktlint/ktlint-ruleset-standard/0.5.1
查看ktlint-ruleset-standard所有版本文件
maven-aether-provider-${aether.maven.provider.version}.jar
/org.apache.maven/maven-aether-provider/${aether.maven.provider.version}
查看maven-aether-provider所有版本文件
guava-18.0.jar
/com.google.guava/guava/18.0
查看guava所有版本文件
aether-api-${aether.version}.jar
/org.eclipse.aether/aether-api/${aether.version}
查看aether-api所有版本文件
aether-spi-${aether.version}.jar
/org.eclipse.aether/aether-spi/${aether.version}
查看aether-spi所有版本文件
aether-util-${aether.version}.jar
/org.eclipse.aether/aether-util/${aether.version}
查看aether-util所有版本文件
aether-impl-${aether.version}.jar
/org.eclipse.aether/aether-impl/${aether.version}
查看aether-impl所有版本文件
aether-connector-basic-${aether.version}.jar
/org.eclipse.aether/aether-connector-basic/${aether.version}
查看aether-connector-basic所有版本文件
aether-transport-file-${aether.version}.jar
/org.eclipse.aether/aether-transport-file/${aether.version}
查看aether-transport-file所有版本文件
aether-transport-http-${aether.version}.jar
/org.eclipse.aether/aether-transport-http/${aether.version}
查看aether-transport-http所有版本文件
slf4j-nop-1.6.2.jar
/org.slf4j/slf4j-nop/1.6.2
查看slf4j-nop所有版本文件
args4j-${args4j.version}.jar
/args4j/args4j/${args4j.version}
查看args4j所有版本文件
testng-${testng.version}.jar
/org.testng/testng/${testng.version}
查看testng所有版本文件
assertj-core-${assertj.version}.jar
/org.assertj/assertj-core/${assertj.version}
查看assertj-core所有版本文件
|