Skip to content

Commit d417813

Browse files
committed
switch dep to maven central
1 parent b9b9774 commit d417813

File tree

5 files changed

+10
-37
lines changed

5 files changed

+10
-37
lines changed

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,11 @@ If you want to integrate the OneAgent SDK into your application, just add the fo
2323
<dependency>
2424
<groupId>com.dynatrace.oneagent.sdk.java</groupId>
2525
<artifactId>oneagent-sdk</artifactId>
26-
<version>1.0.1</version>
26+
<version>1.0.3</version>
2727
<scope>compile</scope>
2828
</dependency>
2929

30-
FIXME: provide gradle / ivy / SBT links
31-
32-
If you prefer to integrate the SDK using plain jar file, just download them from mavenCentral: FIXME: add link to mavenCentral
30+
If you prefer to integrate the SDK using plain jar file, just download them from mavenCentral - Dynatrace OneAgent SDK for Java [binary](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.0.3/oneagent-sdk-1.0.3.jar), [source](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.0.3/oneagent-sdk-1.0.3-sources.jar) or [javadoc](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.0.3/oneagent-sdk-1.0.3-javadoc.jar)
3331

3432
The Dynatrace OneAgent SDK for Java has no further dependencies.
3533

@@ -48,7 +46,7 @@ Additionally you should/have to ensure, that you have set a `LoggingCallback`. F
4846
### Compatibility OneAgent SDK for Java releases with OneAgent for Java releases
4947
|OneAgent SDK for Java|Dynatrace OneAgent Java|
5048
|:------|:--------|
51-
|1.0.1 |>=1.135 |
49+
|1.0.3 |>=1.135 |
5250

5351
## Feedback
5452

@@ -58,4 +56,4 @@ In case of questions, issues or feature requests feel free to contact [Michael K
5856
## OneAgent SDK for Java release notes
5957
|Version|Date|Description|
6058
|:------|:----------|:------------------|
61-
|1.0.1 |01.2018 |Initial release |
59+
|1.0.3 |01.2018 |Initial release |

samples/remotecall/parent/pom.xml

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,17 @@
44
http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<repositories>
8-
<repository>
9-
<id>temporary</id>
10-
<name>lab.linz</name>
11-
<!-- FIXME: add maven central (or: remove as maven central should be default) -->
12-
<url>http://artifactory.lab.dynatrace.org/artifactory/oa-adk-release-local</url>
13-
<layout>default</layout>
14-
<snapshots>
15-
<enabled>false</enabled>
16-
</snapshots>
17-
</repository>
18-
</repositories>
19-
207
<groupId>com.dynatrace.oneagent.sdk.samples.remoting</groupId>
218
<artifactId>parent</artifactId>
22-
<version>1.0.0-SNAPSHOT</version>
9+
<version>1.0.3</version>
2310
<packaging>pom</packaging>
2411
<!-- Dynatrace OneAgent SDK can be found in jcentral: -->
2512
<!-- FIXME: add coordinates to jcentral -->
2613
<dependencies>
2714
<dependency>
2815
<groupId>com.dynatrace.oneagent.sdk.java</groupId>
2916
<artifactId>oneagent-sdk</artifactId>
30-
<version>1.0.1</version>
17+
<version>1.0.3</version>
3118
<scope>compile</scope>
3219
</dependency>
3320
</dependencies>
@@ -47,7 +34,6 @@
4734
<agent.options>,debugOneAgentSdkJava=true</agent.options>
4835
<agent.agentpath>-agentpath:"${agent.lib}=name=SdkSample,server=${agent.server}"${agent.options},tenant=${agent.tenant},tenantToken=${agent.tenantToken}</agent.agentpath>
4936
-->
50-
5137
</properties>
5238

5339
</project>

samples/remotecall/pom.xml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,9 @@
44
http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<repositories>
8-
<repository>
9-
<id>temporary</id>
10-
<name>lab.linz</name>
11-
<url>http://artifactory.lab.dynatrace.org/artifactory/dt-agents-build</url>
12-
<layout>default</layout>
13-
<snapshots>
14-
<enabled>false</enabled>
15-
</snapshots>
16-
</repository>
17-
</repositories>
187
<groupId>com.dynatrace.oneagent.sdk.samples.remoting</groupId>
198
<artifactId>remotecall-sample</artifactId>
20-
<version>1.0.0</version>
9+
<version>1.0.3</version>
2110
<packaging>pom</packaging>
2211

2312
<modules>
@@ -27,7 +16,7 @@
2716
</modules>
2817

2918
<url>https://github.com/Dynatrace/OneAgent-SDK-Java</url>
30-
<name>Dynatrace OneAgent SDK Java</name>
19+
<name>Dynatrace OneAgent SDK Java RemoteCall sample</name>
3120
<organization>
3221
<name>Dynatrace</name>
3322
<url>http://www.dynatrace.com</url>

samples/remotecall/remotecall-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.dynatrace.oneagent.sdk.samples.remoting</groupId>
99
<artifactId>parent</artifactId>
10-
<version>1.0.0-SNAPSHOT</version>
10+
<version>1.0.3</version>
1111
<relativePath>../parent/pom.xml</relativePath>
1212
</parent>
1313

samples/remotecall/remotecall-server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.dynatrace.oneagent.sdk.samples.remoting</groupId>
99
<artifactId>parent</artifactId>
10-
<version>1.0.0-SNAPSHOT</version>
10+
<version>1.0.3</version>
1111
<relativePath>../parent/pom.xml</relativePath>
1212
</parent>
1313

0 commit comments

Comments
 (0)