Skip to content

Commit dc87ede

Browse files
committed
Add support of Java policies
Signed-off-by: Andriy Redko <[email protected]>
1 parent 1acba95 commit dc87ede

File tree

15 files changed

+4221
-0
lines changed

15 files changed

+4221
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/*
2+
* SPDX-License-Identifier: Apache-2.0
3+
*
4+
* The OpenSearch Contributors require contributions made to
5+
* this file be licensed under the Apache-2.0 license or a
6+
* compatible open source license.
7+
*
8+
* Modifications Copyright OpenSearch Contributors. See
9+
* GitHub history for details.
10+
*/
11+
12+
// This file is intentionally blank. All configuration of the
13+
// distribution is done in the parent project.
14+
15+
// See please https://docs.gradle.org/8.5/userguide/upgrading_version_8.html#deprecated_missing_project_directory
16+
17+
apply plugin: 'opensearch.build'
18+
apply plugin: 'opensearch.publish'
19+
20+
ext {
21+
// Do not fail on 'warning: using incubating module(s): jdk.incubator.vector'
22+
failOnJavadocWarning = false
23+
}
24+
25+
base {
26+
archivesName = 'opensearch-agent-policy'
27+
}
28+
29+
disableTasks('forbiddenApisMain')
30+
31+
test.enabled = false
32+
testingConventions.enabled = false
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* SPDX-License-Identifier: Apache-2.0
3+
*
4+
* The OpenSearch Contributors require contributions made to
5+
* this file be licensed under the Apache-2.0 license or a
6+
* compatible open source license.
7+
*/
8+
9+
/**
10+
* Java Agent Policy
11+
*/
12+
package org.opensearch;

0 commit comments

Comments
 (0)