Skip to content

Commit c5eee83

Browse files
committed
Updated Licenses
1 parent 7373022 commit c5eee83

15 files changed

Lines changed: 110 additions & 1 deletion

File tree

LICENSE.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright 2018 AppDynamics LLC and its affiliates
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.

NOTICE.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Notice and Disclaimer
2+
3+
All Extensions published by AppDynamics are governed by the Apache License v2 and are excluded from the definition of covered software under any agreement between AppDynamics and the User governing AppDynamics Pro Edition, Test & Dev Edition, or any other Editions.
4+

pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright 2018. AppDynamics LLC and its affiliates.
4+
~ All Rights Reserved.
5+
~ This is unpublished proprietary source code of AppDynamics LLC and its affiliates.
6+
~ The copyright notice above does not evidence any actual or intended publication of such source code.
7+
-->
8+
29
<project xmlns="http://maven.apache.org/POM/4.0.0"
310
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
411
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
512
<modelVersion>4.0.0</modelVersion>
613

714
<groupId>com.appdynamics.extensions</groupId>
815
<artifactId>sql-monitoring-extension</artifactId>
9-
<version>1.4.3</version>
16+
<version>1.4.4</version>
1017
<packaging>jar</packaging>
1118
<name>sql-monitoring-extension</name>
1219
<url>http://maven.apache.org</url>
@@ -190,6 +197,7 @@
190197
<copy todir="${target.dir}">
191198
<fileset dir="src/main/resources/conf" includes="monitor.xml"/>
192199
<fileset dir="src/main/resources/conf" includes="config.yml"/>
200+
<fileset dir="${project.basedir}" includes="LICENSE.txt,NOTICE.txt"/>
193201
</copy>
194202
<copy todir="${target.dir}">
195203
<fileset dir="${project.build.directory}"

src/main/java/com/appdynamics/extensions/sql/Column.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright 2018. AppDynamics LLC and its affiliates.
3+
* All Rights Reserved.
4+
* This is unpublished proprietary source code of AppDynamics LLC and its affiliates.
5+
* The copyright notice above does not evidence any actual or intended publication of such source code.
6+
*/
7+
18
package com.appdynamics.extensions.sql;
29

310
import com.singularity.ee.agent.systemagent.api.MetricWriter;

src/main/java/com/appdynamics/extensions/sql/ColumnGenerator.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright 2018. AppDynamics LLC and its affiliates.
3+
* All Rights Reserved.
4+
* This is unpublished proprietary source code of AppDynamics LLC and its affiliates.
5+
* The copyright notice above does not evidence any actual or intended publication of such source code.
6+
*/
7+
18
package com.appdynamics.extensions.sql;
29

310
import com.appdynamics.extensions.util.AssertUtils;

src/main/java/com/appdynamics/extensions/sql/Columns.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright 2018. AppDynamics LLC and its affiliates.
3+
* All Rights Reserved.
4+
* This is unpublished proprietary source code of AppDynamics LLC and its affiliates.
5+
* The copyright notice above does not evidence any actual or intended publication of such source code.
6+
*/
7+
18
package com.appdynamics.extensions.sql;
29

310
import com.google.common.collect.Lists;

src/main/java/com/appdynamics/extensions/sql/JDBCConnectionAdapter.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright 2018. AppDynamics LLC and its affiliates.
3+
* All Rights Reserved.
4+
* This is unpublished proprietary source code of AppDynamics LLC and its affiliates.
5+
* The copyright notice above does not evidence any actual or intended publication of such source code.
6+
*/
7+
18
package com.appdynamics.extensions.sql;
29

310

src/main/java/com/appdynamics/extensions/sql/MetricCollector.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright 2018. AppDynamics LLC and its affiliates.
3+
* All Rights Reserved.
4+
* This is unpublished proprietary source code of AppDynamics LLC and its affiliates.
5+
* The copyright notice above does not evidence any actual or intended publication of such source code.
6+
*/
7+
18
package com.appdynamics.extensions.sql;
29

310
import com.appdynamics.extensions.metrics.Metric;

src/main/java/com/appdynamics/extensions/sql/SQLMonitor.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright 2018. AppDynamics LLC and its affiliates.
3+
* All Rights Reserved.
4+
* This is unpublished proprietary source code of AppDynamics LLC and its affiliates.
5+
* The copyright notice above does not evidence any actual or intended publication of such source code.
6+
*/
7+
18
package com.appdynamics.extensions.sql;
29

310
import com.appdynamics.extensions.ABaseMonitor;

src/main/java/com/appdynamics/extensions/sql/SQLMonitorTask.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright 2018. AppDynamics LLC and its affiliates.
3+
* All Rights Reserved.
4+
* This is unpublished proprietary source code of AppDynamics LLC and its affiliates.
5+
* The copyright notice above does not evidence any actual or intended publication of such source code.
6+
*/
7+
18
package com.appdynamics.extensions.sql;
29

310
import com.appdynamics.extensions.AMonitorTaskRunnable;

0 commit comments

Comments
 (0)