1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/EdgexFoundry-core-command

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
pom.xml 8.4 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
Jeremy Phelps Отправлено 15.11.2017 19:55 405187d
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2016-2017 Dell Inc.
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.
@microservice: core-command
@author: Jim White, Dell
@version: 1.0.0
-->
<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>
<groupId>org.edgexfoundry</groupId>
<artifactId>core-command</artifactId>
<version>0.5.0-SNAPSHOT</version>
<name>EdgeX Foundry Core Command Micro Service</name>
<description>EdgeX Foundry Core Command Micro Service</description>
<properties>
<springmvc.raml.version>0.8.1</springmvc.raml.version>
<spring.cloud.version>Brixton.SR6</spring.cloud.version>
<httpserver.version>20070405</httpserver.version>
<core-domain.version>0.5.0-SNAPSHOT</core-domain.version>
<core-test.version>0.5.0-SNAPSHOT</core-test.version>
<core-exception.version>0.5.0-SNAPSHOT</core-exception.version>
<metadata-client.version>0.5.0-SNAPSHOT</metadata-client.version>
<support-logging-client.version>0.5.0-SNAPSHOT</support-logging-client.version>
<assembley-plugin.version>2.5.5</assembley-plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<nexusproxy>https://nexus.edgexfoundry.org</nexusproxy>
<repobasepath>content/repositories</repobasepath>
<checkstyle.plugin.version>2.17</checkstyle.plugin.version>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.7.RELEASE</version>
</parent>
<distributionManagement>
<snapshotRepository>
<id>snapshots</id>
<name>EdgeX Snapshot Repository</name>
<url>${nexusproxy}/${repobasepath}/snapshots</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j</artifactId>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-consul-all</artifactId>
<exclusions>
<exclusion>
<groupId>javax.ws.rs</groupId>
<artifactId>jsr311-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.edgexfoundry</groupId>
<artifactId>core-domain</artifactId>
<version>${core-domain.version}</version>
</dependency>
<dependency>
<groupId>org.edgexfoundry</groupId>
<artifactId>core-exception</artifactId>
<version>${core-exception.version}</version>
</dependency>
<dependency>
<groupId>org.edgexfoundry</groupId>
<artifactId>core-metadata-client</artifactId>
<version>${metadata-client.version}</version>
</dependency>
<dependency>
<groupId>org.edgexfoundry</groupId>
<artifactId>core-test</artifactId>
<version>${core-test.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.sun.net.httpserver</groupId>
<artifactId>http</artifactId>
<version>${httpserver.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.edgexfoundry</groupId>
<artifactId>support-logging-client</artifactId>
<version>${support-logging-client.version}</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>RequiresNone</id>
<properties>
<testcase.groups>org.edgexfoundry.test.category.RequiresNone</testcase.groups>
</properties>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<id>Requires</id>
<properties>
<testcase.groups>org.edgexfoundry.test.category.RequiresSpring</testcase.groups>
<testcase.groups>org.edgexfoundry.test.category.RequiresWeb</testcase.groups>
<testcase.groups>org.edgexfoundry.test.category.RequiresMongo</testcase.groups>
</properties>
</profile>
</profiles>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring.cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<groups>${testcase.groups}</groups>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${checkstyle.plugin.version}</version>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<configuration>
<configLocation>google_checks.xml</configLocation>
<consoleOutput>true</consoleOutput>
<violationSeverity>error</violationSeverity>
<skip>false</skip>
<linkXRef>false</linkXRef>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
<outputFile>${project.build.directory}/edgex-checkstyles-result.xml</outputFile>
</configuration>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<versionRange>[2.17,)</versionRange>
<goals>
<goal>check</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<repositories>
<repository>
<id>staging</id>
<name>EdgeX Staging Repository</name>
<url>${nexusproxy}/${repobasepath}/staging</url>
</repository>
<repository>
<id>snapshots</id>
<name>EdgeX Snapshot Repository</name>
<url>${nexusproxy}/${repobasepath}/snapshots</url>
</repository>
</repositories>
</project>

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/EdgexFoundry-core-command.git
git@api.gitlife.ru:oschina-mirror/EdgexFoundry-core-command.git
oschina-mirror
EdgexFoundry-core-command
EdgexFoundry-core-command
master