|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<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/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>com.databox</groupId> |
| 5 | + <artifactId>custom-datasource-sdk</artifactId> |
| 6 | + <version>1.1.1-SNAPSHOT</version> |
| 7 | + <name>custom-datasource-sdk</name> |
| 8 | + <description>The Java SDK for interacting with the Databox Push API.</description> |
| 9 | + <packaging>jar</packaging> |
| 10 | + |
| 11 | + <licenses> |
| 12 | + <license> |
| 13 | + <name>The Apache Software License, Version 2.0</name> |
| 14 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 15 | + <distribution>repo</distribution> |
| 16 | + </license> |
| 17 | + </licenses> |
| 18 | + |
| 19 | + <properties> |
| 20 | + <java.source.version>1.6</java.source.version> |
| 21 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 22 | + <junit.version>4.10</junit.version> |
| 23 | + </properties> |
| 24 | + |
| 25 | + <scm> |
| 26 | + < connection>scm:git:ssh:// [email protected]/umajeric/databox-java-sdk.git</ connection> |
| 27 | + < developerConnection>scm:git:ssh:// [email protected]/umajeric/databox-java-sdk.git</ developerConnection> |
| 28 | + <url>https://github.com/umajeric/databox-java-sdk.git</url> |
| 29 | + <tag>HEAD</tag> |
| 30 | + </scm> |
| 31 | + |
| 32 | + <distributionManagement> |
| 33 | + <repository> |
| 34 | + <id>umajeric-git-maven-public-releases</id> |
| 35 | + <name>UMajeric Releases</name> |
| 36 | + < url>git:releases:// [email protected]:umajeric/maven-public-repo.git</ url> |
| 37 | + </repository> |
| 38 | + <snapshotRepository> |
| 39 | + <id>umajeric-git-maven-public-snapshots</id> |
| 40 | + <name>UMajeric Snapshots</name> |
| 41 | + < url>git:snapshots:// [email protected]:umajeric/maven-public-repo.git</ url> |
| 42 | + </snapshotRepository> |
| 43 | + </distributionManagement> |
| 44 | + |
| 45 | + <repositories> |
| 46 | + <repository> |
| 47 | + <id>java.net</id> |
| 48 | + <url>https://maven.java.net/content/repositories/public/</url> |
| 49 | + </repository> |
| 50 | + <repository> |
| 51 | + <id>mave-repo-1</id> |
| 52 | + <url>http://repo.maven.apache.org/maven2/</url> |
| 53 | + </repository> |
| 54 | + <repository> |
| 55 | + <id>umajeric-public-repo</id> |
| 56 | + <name>UMajeric Releases</name> |
| 57 | + <releases> |
| 58 | + <enabled>true</enabled> |
| 59 | + </releases> |
| 60 | + <snapshots> |
| 61 | + <enabled>false</enabled> |
| 62 | + </snapshots> |
| 63 | + <url>https://raw.github.com/umajeric/maven-public-repo/releases</url> |
| 64 | + </repository> |
| 65 | + </repositories> |
| 66 | + |
| 67 | + <pluginRepositories> |
| 68 | + <pluginRepository> |
| 69 | + <id>synergian-repo</id> |
| 70 | + <url>https://raw.github.com/synergian/wagon-git/releases</url> |
| 71 | + </pluginRepository> |
| 72 | + </pluginRepositories> |
| 73 | + |
| 74 | + <dependencies> |
| 75 | + <dependency> |
| 76 | + <groupId>com.google.code.gson</groupId> |
| 77 | + <artifactId>gson</artifactId> |
| 78 | + <version>2.2.4</version> |
| 79 | + </dependency> |
| 80 | + |
| 81 | + <dependency> |
| 82 | + <groupId>org.apache.httpcomponents</groupId> |
| 83 | + <artifactId>httpclient</artifactId> |
| 84 | + <version>4.3.1</version> |
| 85 | + </dependency> |
| 86 | + |
| 87 | + <dependency> |
| 88 | + <groupId>org.slf4j</groupId> |
| 89 | + <artifactId>slf4j-api</artifactId> |
| 90 | + <version>1.7.5</version> |
| 91 | + </dependency> |
| 92 | + |
| 93 | + <!-- TEST scope dependencies --> |
| 94 | + <dependency> |
| 95 | + <groupId>junit</groupId> |
| 96 | + <artifactId>junit</artifactId> |
| 97 | + <version>${junit.version}</version> |
| 98 | + <scope>test</scope> |
| 99 | + </dependency> |
| 100 | + |
| 101 | + <dependency> |
| 102 | + <groupId>ch.qos.logback</groupId> |
| 103 | + <artifactId>logback-classic</artifactId> |
| 104 | + <version>1.0.13</version> |
| 105 | + <scope>test</scope> |
| 106 | + </dependency> |
| 107 | + </dependencies> |
| 108 | + |
| 109 | + <build> |
| 110 | + <plugins> |
| 111 | + <plugin> |
| 112 | + <groupId>org.apache.maven.plugins</groupId> |
| 113 | + <artifactId>maven-compiler-plugin</artifactId> |
| 114 | + <version>2.0.2</version> |
| 115 | + <configuration> |
| 116 | + <source>${java.source.version}</source> |
| 117 | + <target>${java.source.version}</target> |
| 118 | + <encoding>${project.build.sourceEncoding}</encoding> |
| 119 | + </configuration> |
| 120 | + </plugin> |
| 121 | + <plugin> |
| 122 | + <groupId>org.apache.maven.plugins</groupId> |
| 123 | + <artifactId>maven-jar-plugin</artifactId> |
| 124 | + <version>2.1</version> |
| 125 | + <configuration> |
| 126 | + <archive> |
| 127 | + <manifest> |
| 128 | + <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
| 129 | + </manifest> |
| 130 | + </archive> |
| 131 | + </configuration> |
| 132 | + </plugin> |
| 133 | + <plugin> |
| 134 | + <groupId>org.apache.maven.plugins</groupId> |
| 135 | + <artifactId>maven-release-plugin</artifactId> |
| 136 | + <version>2.4.2</version> |
| 137 | + <configuration> |
| 138 | + <goals>deploy</goals> |
| 139 | + <autoVersionSubmodules>true</autoVersionSubmodules> |
| 140 | + <releaseProfiles>release</releaseProfiles> |
| 141 | + </configuration> |
| 142 | + <dependencies> |
| 143 | + <dependency> |
| 144 | + <groupId>org.apache.maven.scm</groupId> |
| 145 | + <artifactId>maven-scm-api</artifactId> |
| 146 | + <version>1.8.1</version> |
| 147 | + </dependency> |
| 148 | + <dependency> |
| 149 | + <groupId>org.apache.maven.scm</groupId> |
| 150 | + <artifactId>maven-scm-provider-gitexe</artifactId> |
| 151 | + <version>1.8.1</version> |
| 152 | + </dependency> |
| 153 | + </dependencies> |
| 154 | + </plugin> |
| 155 | + </plugins> |
| 156 | + |
| 157 | + <extensions> |
| 158 | + <extension> |
| 159 | + <groupId>ar.com.synergian</groupId> |
| 160 | + <artifactId>wagon-git</artifactId> |
| 161 | + <version>0.2.1</version> |
| 162 | + </extension> |
| 163 | + </extensions> |
| 164 | + </build> |
| 165 | +</project> |
0 commit comments