Age | Commit message (Expand) | Author | Files | Lines |
---|---|---|---|---|
2018-05-03 | Update to remove loadbalancer code | Kajur, Harish (vk250x) | 1 | -1/+1 |
2018-04-27 | Update keystore to use aaf keystore | Kajur, Harish (vk250x) | 1 | -0/+0 |
2018-04-11 | Fix the basic auth issue which got broken | Kajur, Harish (vk250x) | 4 | -0/+183 |
2018-03-29 | Update docker entrypoint to run independent | Kajur, Harish (vk250x) | 2 | -1/+18 |
2018-03-28 | Add to traversal custom query to get parent path | Maharajh, Robby (rx2202) | 1 | -2/+7 |
2018-03-28 | Update the titan code to janus graph code | Kajur, Harish (vk250x) | 10 | -20/+29 |
2018-03-22 | Update the license for 2017-2018 license | Kajur, Harish (vk250x) | 52 | -125/+403 |
2018-03-20 | Update spring boot 1.5.1 to 1.5.10 | Kajur, Harish (vk250x) | 1 | -1/+1 |
2018-03-07 | Update traversal from AJSC 2 to Spring Boot | Venkata Harish K Kajur | 230 | -2189/+6915 |
2018-02-27 | Update the rest endpoints for v13 version | Venkata Harish K Kajur | 2 | -2/+2 |
2018-02-22 | Update DmaapConfig and AAIAppServlet to start | Venkata Harish K Kajur | 1 | -16/+0 |
2018-02-15 | Sync logging context changes | Venkata Harish K Kajur | 17 | -337/+1157 |
2018-02-01 | Merge "Sonar Minor:Define a constant instead of literal." | James Forsyth | 1 | -2/+4 |
2018-01-17 | Merge "Sonar Major: Replace the type specification." | Venkata Harish Kajur | 1 | -1/+1 |
2018-01-15 | Add ability to do optional params for custom query | Lamont, William (wl2432) | 6 | -39/+455 |
2018-01-15 | Sonar Minor:Define a constant instead of literal. | aishkashyap | 1 | -2/+4 |
2018-01-10 | Sonar Major: Replace the type specification. | aishkashyap | 1 | -1/+1 |
2017-12-06<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.onap.so</groupId>
<artifactId>so</artifactId>
<version>1.6.0-SNAPSHOT</version>
</parent>
<groupId>org.onap.so</groupId>
<artifactId>cloudify-client</artifactId>
<packaging>jar</packaging>
<name>Cloudify Rest Client</name>
<description>Java client for Cloudify REST interface</description>
<build>
<finalName>${project.artifactId}-${project.version}</finalName>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<configuration>
<classesDirectory>target/classes</classesDirectory>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.onap.so</groupId>
<artifactId>common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
</dependencies>
</project>
|