| 组织ID: |
net.nicoulaj.compile-command-annotations |
| 项目ID: |
compile-command-annotations |
| 版本: |
1.2.3 |
| 最后修改时间: |
2019-12-05 04:37:29 |
| 包类型: |
jar |
| 标题: |
Hotspot compile command annotations |
| 描述: |
Annotation based configuration file generator for the Hotspot JVM JIT compiler. |
| 大小: |
21.22KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>net.nicoulaj.compile-command-annotations</groupId>
<artifactId>compile-command-annotations</artifactId>
<version>1.2.3</version>
</dependency>
|
| Gradle引入代码: |
net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.3
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<!--
Hotspot compile command annotations - http://compile-command-annotations.nicoulaj.net
Copyright 漏 2014-2019 Hotspot compile command annotations contributors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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>net.nicoulaj</groupId>
<artifactId>parent</artifactId>
<version>59</version>
</parent>
<groupId>net.nicoulaj.compile-command-annotations</groupId>
<artifactId>compile-command-annotations</artifactId>
<version>1.2.3</version>
<name>Hotspot compile command annotations</name>
<inceptionYear>2014</inceptionYear>
<description>Annotation based configuration file generator for the Hotspot JVM JIT compiler.</description>
<url>http://compile-command-annotations.nicoulaj.net</url>
<scm>
<url>http://github.com/nicoulaj/compile-command-annotations</url>
<connection>scm:git:git@github.com:nicoulaj/compile-command-annotations.git</connection>
<developerConnection>scm:git:git@github.com:nicoulaj/compile-command-annotations.git</developerConnection>
<tag>1.2.3</tag>
</scm>
<issueManagement>
<system>Github</system>
<url>http://github.com/nicoulaj/compile-command-annotations/issues</url>
</issueManagement>
<ciManagement>
<system>Travis CI</system>
<url>http://travis-ci.org/nicoulaj/compile-command-annotations</url>
</ciManagement>
<distributionManagement>
<site>
<id>github</id>
<url>gitsite:git@github.com/nicoulaj/compile-command-annotations.git</url>
</site>
</distributionManagement>
<properties>
<license>apache_v2</license>
<debug>false</debug>
<java.level>1.6</java.level>
<guava.version>28.1-jre</guava.version>
<assertj-core.version>3.13.2</assertj-core.version>
<commons-io.version>2.6</commons-io.version>
</properties>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj-core.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.level}</source>
<target>${java.level}</target>
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-additional-test-source-roots</id>
<phase>generate-test-sources</phase>
<goals>
<goal>add-test-source</goal>
</goals>
<configuration>
<sources>
<source>${project.basedir}/src/samples/java</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-invoker-plugin</artifactId>
<configuration>
<debug>${debug}</debug>
<skipInstallation>${skipTests}</skipInstallation>
<skipInvocation>${skipTests}</skipInvocation>
<localRepositoryPath>${project.build.directory}/it/local-repository</localRepositoryPath>
<showErrors>true</showErrors>
<settingsFile>src/it/settings.xml</settingsFile>
<projectsDirectory>src/it/tests</projectsDirectory>
<pomIncludes>
<pomInclude>*/pom.xml</pomInclude>
</pomIncludes>
<cloneProjectsTo>${project.build.directory}/it/tests</cloneProjectsTo>
<reportsDirectory>${project.build.directory}/it/reports</reportsDirectory>
<addTestClassPath>true</addTestClassPath>
<selectorScript>selector.bsh</selectorScript>
<goals>
<goal>clean</goal>
<goal>install</goal>
</goals>
</configuration>
<executions>
<execution>
<id>run-integration-tests</id>
<goals>
<goal>install</goal>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>pre-unit-test</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>post-unit-test</id>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>pre-integration-test</id>
<goals>
<goal>prepare-agent-integration</goal>
</goals>
<configuration>
<propertyName>invoker.mavenOpts</propertyName>
</configuration>
</execution>
<execution>
<id>post-integration-test</id>
<goals>
<goal>report-integration</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
net.nicoulaj.compilecommand.annotations.Option.class
net.nicoulaj.compilecommand.CompileCommandProcessor.class
net.nicoulaj.compilecommand.annotations.DontInline.class
net.nicoulaj.compilecommand.IncrementalCompilationHelper.class
net.nicoulaj.compilecommand.annotations.Log.class
net.nicoulaj.compilecommand.CompileCommandProcessor$1.class
net.nicoulaj.compilecommand.CompileCommandProcessor$2.class
META-INF/gradle/incremental.annotation.processors
net.nicoulaj.compilecommand.annotations.Quiet.class
net.nicoulaj.compilecommand.CompileCommandProcessor$4.class
net.nicoulaj.compilecommand.annotations.Options.class
net.nicoulaj.compilecommand.annotations.Print.class
META-INF/services/javax.annotation.processing.Processor
net.nicoulaj.compilecommand.annotations.Break.class
net.nicoulaj.compilecommand.annotations.CompileOnly.class
META-INF/maven/net.nicoulaj.compile-command-annotations/compile-command-annotations/pom.xml
net.nicoulaj.compilecommand.annotations.Exclude.class
META-INF/maven/net.nicoulaj.compile-command-annotations/compile-command-annotations/pom.properties
net.nicoulaj.compilecommand.annotations.Inline.class
net.nicoulaj.compilecommand.CompileCommandProcessor$Line.class
net.nicoulaj.compilecommand.CompileCommandProcessor$3.class
|
| 依赖Jar: |
guava-${guava.version}.jar
/com.google.guava/guava/${guava.version}
查看guava所有版本文件
commons-io-${commons-io.version}.jar
/commons-io/commons-io/${commons-io.version}
查看commons-io所有版本文件
assertj-core-${assertj-core.version}.jar
/org.assertj/assertj-core/${assertj-core.version}
查看assertj-core所有版本文件
|