| 组织ID: |
org.eclipse.ditto |
| 项目ID: |
ditto-utils-jsr305 |
| 版本: |
0.1.0-M1 |
| 最后修改时间: |
2019-12-06 12:34:42 |
| 包类型: |
jar |
| 标题: |
Eclipse Ditto :: Utils :: JSR-305 Extensions |
| 大小: |
10.13KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.eclipse.ditto</groupId>
<artifactId>ditto-utils-jsr305</artifactId>
<version>0.1.0-M1</version>
</dependency>
|
| Gradle引入代码: |
org.eclipse.ditto:ditto-utils-jsr305:0.1.0-M1
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2017 Bosch Software Innovations GmbH.
~
~ All rights reserved. This program and the accompanying materials
~ are made available under the terms of the Eclipse Public License v2.0
~ which accompanies this distribution, and is available at
~ https://www.eclipse.org/org/documents/epl-2.0/index.php
~
~ Contributors:
~ Bosch Software Innovations GmbH - initial contribution
-->
<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>org.eclipse.ditto</groupId>
<artifactId>ditto-utils</artifactId>
<version>0.1.0-M1</version>
</parent>
<artifactId>ditto-utils-jsr305</artifactId>
<name>Eclipse Ditto :: Utils :: JSR-305 Extensions</name>
<dependencies>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<configuration>
<oldVersion>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${binary-compatibility-check.version}</version>
</dependency>
</oldVersion>
<newVersion>
<file>
<path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
</file>
</newVersion>
<parameter>
<onlyModified>true</onlyModified>
<accessModifier>public</accessModifier>
<breakBuildOnModifications>false</breakBuildOnModifications>
<breakBuildOnBinaryIncompatibleModifications>true</breakBuildOnBinaryIncompatibleModifications>
<onlyBinaryIncompatible>false</onlyBinaryIncompatible>
<includeSynthetic>false</includeSynthetic>
<ignoreMissingClasses>false</ignoreMissingClasses>
<skipPomModules>true</skipPomModules>
<htmlTitle>${project.name} :: Binary Compatibility Report</htmlTitle>
</parameter>
<skip>false</skip>
</configuration>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>cmp</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/ECLIPSE_.SF
META-INF/ECLIPSE_.RSA
META-INF/maven/org.eclipse.ditto/ditto-utils-jsr305/pom.xml
META-INF/maven/org.eclipse.ditto/ditto-utils-jsr305/pom.properties
org.eclipse.ditto.utils.jsr305.annotations.AllParametersAndReturnValuesAreNonnullByDefault.class
org.eclipse.ditto.utils.jsr305.annotations.AllValuesAreNonnullByDefault.class
|
| 依赖Jar: |
|