github.com/muhammedhassanm/blockchain@v0.0.0-20200120143007-697261defd4d/sawtooth-core-master/sdk/examples/intkey_java/pom.xml (about)

     1  <?xml version="1.0" encoding="UTF-8"?>
     2  <!--
     3   * Copyright 2017 Intel Corporation
     4   *
     5   * Licensed under the Apache License, Version 2.0 (the "License");
     6   * you may not use this file except in compliance with the License.
     7   * You may obtain a copy of the License at
     8   *
     9   *     http://www.apache.org/licenses/LICENSE-2.0
    10   *
    11   * Unless required by applicable law or agreed to in writing, software
    12   * distributed under the License is distributed on an "AS IS" BASIS,
    13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    14   * See the License for the specific language governing permissions and
    15   * limitations under the License.
    16   -->
    17  <project xmlns="http://maven.apache.org/POM/4.0.0"
    18           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    19           xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    20      <modelVersion>4.0.0</modelVersion>
    21  
    22      <groupId>sawtooth.examples</groupId>
    23      <artifactId>intkey_java</artifactId>
    24      <version>1.0-SNAPSHOT</version>
    25  
    26      <build>
    27          <sourceDirectory>${basedir}</sourceDirectory>
    28          <plugins>
    29              <plugin>
    30                  <groupId>org.apache.maven.plugins</groupId>
    31                  <artifactId>maven-checkstyle-plugin</artifactId>
    32                  <version>2.17</version>
    33                  <executions>
    34                      <execution>
    35                          <id>validate</id>
    36                          <phase>validate</phase>
    37                          <goals>
    38                              <goal>check</goal>
    39                          </goals>
    40                          <configuration>
    41                              <encoding>UTF-8</encoding>
    42                              <configLocation>google_checks.xml</configLocation>
    43                              <consoleOutput>true</consoleOutput>
    44                              <failOnViolation>true</failOnViolation>
    45                              <violationSeverity>warning</violationSeverity>
    46                              <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
    47                          </configuration>
    48                      </execution>
    49                  </executions>
    50              </plugin>
    51              <plugin>
    52                  <groupId>org.apache.maven.plugins</groupId>
    53                  <artifactId>maven-compiler-plugin</artifactId>
    54                  <version>3.5.1</version>
    55                  <configuration>
    56                      <source>1.7</source>
    57                      <target>1.7</target>
    58                  </configuration>
    59              </plugin>
    60              <plugin>
    61                  <groupId>org.apache.maven.plugins</groupId>
    62                  <artifactId>maven-shade-plugin</artifactId>
    63                  <version>2.4.3</version>
    64                  <executions>
    65                      <execution>
    66                          <phase>package</phase>
    67                          <goals>
    68                              <goal>shade</goal>
    69                          </goals>
    70                      </execution>
    71                  </executions>
    72              </plugin>
    73          </plugins>
    74      </build>
    75      <dependencies>
    76          <dependency>
    77              <groupId>sawtooth</groupId>
    78              <artifactId>sdk</artifactId>
    79              <version>1.0-SNAPSHOT</version>
    80          </dependency>
    81          <dependency>
    82              <groupId>com.google.protobuf</groupId>
    83              <artifactId>protobuf-java</artifactId>
    84              <version>3.0.0</version>
    85          </dependency>
    86          <dependency>
    87            <groupId>co.nstant.in</groupId>
    88            <artifactId>cbor</artifactId>
    89            <version>0.7</version>
    90          </dependency>
    91  
    92      </dependencies>
    93  </project>