| 组织ID: |
org.eclipse.ditto |
| 项目ID: |
ditto-services-models-things |
| 版本: |
0.1.0-M1 |
| 最后修改时间: |
2019-12-01 03:42:20 |
| 包类型: |
jar |
| 标题: |
Eclipse Ditto :: Services :: Models :: Things |
| 大小: |
44.33KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.eclipse.ditto</groupId>
<artifactId>ditto-services-models-things</artifactId>
<version>0.1.0-M1</version>
</dependency>
|
| Gradle引入代码: |
org.eclipse.ditto:ditto-services-models-things: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-services-models</artifactId>
<version>0.1.0-M1</version>
</parent>
<artifactId>ditto-services-models-things</artifactId>
<packaging>bundle</packaging>
<name>Eclipse Ditto :: Services :: Models :: Things</name>
<dependencies>
<dependency>
<groupId>org.eclipse.ditto</groupId>
<artifactId>ditto-model-things</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.ditto</groupId>
<artifactId>ditto-model-policies</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.ditto</groupId>
<artifactId>ditto-signals-commands-things</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.ditto</groupId>
<artifactId>ditto-signals-commands-devops</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.ditto</groupId>
<artifactId>ditto-signals-events-things</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.ditto</groupId>
<artifactId>ditto-services-utils-cluster</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.ditto</groupId>
<artifactId>ditto-services-utils-distributed-cache-model</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Import-Package>
!org.eclipse.ditto.utils.jsr305.annotations,
org.eclipse.ditto.*
</Import-Package>
<Export-Package>
org.eclipse.ditto.services.models.things.*
</Export-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<phase>process-test-classes</phase>
<goals>
<goal>java</goal>
</goals>
<configuration>
<classpathScope>test</classpathScope>
<mainClass>org.eclipse.ditto.services.models.things.CommandAndEventJsonExamplesProducer
</mainClass>
<arguments>
<argument>${project.build.directory}/generated-resources</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
<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>
<type>jar</type>
</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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<!-- we use http://verhas.github.io/mdsnippet/usage.html in order to include JSON files -->
<dependencies>
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-module-markdown</artifactId>
<version>1.6</version>
</dependency>
</dependencies>
<configuration>
<generateReports>false
</generateReports> <!-- important! this messes things with our proxy really up -->
<!-- if the above is not set, all plugins executed after the site-plugin will fail when trying to communicate with a server -->
<generateSitemap>true</generateSitemap>
</configuration>
<executions>
<execution>
<id>create-json-examples</id>
<phase>package</phase>
<goals>
<goal>site</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptor>src/assembly/site.xml</descriptor>
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- bind to the packaging phase -->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/maven/org.eclipse.ditto/ditto-services-models-things/pom.properties
META-INF/maven/org.eclipse.ditto/ditto-services-models-things/pom.xml
org.eclipse.ditto.services.models.things.Permission.class
org.eclipse.ditto.services.models.things.ThingCacheEntry.class
org.eclipse.ditto.services.models.things.ThingTag$JsonFields.class
org.eclipse.ditto.services.models.things.ThingTag.class
org.eclipse.ditto.services.models.things.ThingsMappingStrategy.class
org.eclipse.ditto.services.models.things.ThingsMessagingConstants.class
org.eclipse.ditto.services.models.things.commands.sudo.SudoCommand$JsonFields.class
org.eclipse.ditto.services.models.things.commands.sudo.SudoCommand.class
org.eclipse.ditto.services.models.things.commands.sudo.SudoCommandRegistry.class
org.eclipse.ditto.services.models.things.commands.sudo.SudoCommandResponse$JsonFields.class
org.eclipse.ditto.services.models.things.commands.sudo.SudoCommandResponse.class
org.eclipse.ditto.services.models.things.commands.sudo.SudoCommandResponseRegistry.class
org.eclipse.ditto.services.models.things.commands.sudo.SudoRetrieveModifiedThingTags.class
org.eclipse.ditto.services.models.things.commands.sudo.SudoRetrieveModifiedThingTagsResponse.class
org.eclipse.ditto.services.models.things.commands.sudo.SudoRetrieveThing.class
org.eclipse.ditto.services.models.things.commands.sudo.SudoRetrieveThingResponse.class
org.eclipse.ditto.services.models.things.commands.sudo.SudoRetrieveThings.class
org.eclipse.ditto.services.models.things.commands.sudo.SudoRetrieveThingsResponse.class
org.eclipse.ditto.services.models.things.commands.sudo.TakeSnapshot.class
org.eclipse.ditto.services.models.things.commands.sudo.TakeSnapshotResponse.class
|
| 依赖Jar: |
|