Skip to content

Commit

Permalink
Initial - not starting opens java.lang
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilbonte21 committed Nov 28, 2024
1 parent bdb6ec2 commit 3018bd8
Show file tree
Hide file tree
Showing 12 changed files with 41 additions and 35 deletions.
6 changes: 3 additions & 3 deletions auth-agents-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
<artifactId>auth-agents-common</artifactId>

<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>

<jackson-jaxrs.version>1.9.13</jackson-jaxrs.version>
<guava.version>31.1-jre</guava.version>
Expand Down Expand Up @@ -96,7 +96,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<version>${maven-shade-plugin}</version>
<executions>
<execution>
<phase>package</phase>
Expand Down
4 changes: 2 additions & 2 deletions auth-agents-cred/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
<artifactId>auth-agents-cred</artifactId>

<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions auth-audits/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
<artifactId>auth-audits</artifactId>

<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<gson.version>2.9.0</gson.version>
<orc.version>1.5.8</orc.version>
</properties>
Expand Down
4 changes: 2 additions & 2 deletions auth-plugin-atlas/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
<artifactId>auth-plugin-atlas</artifactId>

<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>

<dependencies>
Expand Down
3 changes: 3 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
# limitations under the License.
#

java -version


mkdir -p ~/.m2/repository/org/keycloak

wget https://atlan-public.s3.eu-west-1.amazonaws.com/artifact/keycloak-15.0.2.1.zip
Expand Down
4 changes: 2 additions & 2 deletions client-auth/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
<artifactId>client-auth</artifactId>

<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<keycloak-admin-client.version>15.1.0</keycloak-admin-client.version>
</properties>

Expand Down
4 changes: 2 additions & 2 deletions client-heracles/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
<artifactId>client-heracles</artifactId>

<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,11 @@ public static Configuration getConfiguration() throws AtlasException {
return janusConfig;
}

static {
/*static {
addHBase2Support();
addSolr6Index();
}
}*/

private static void addHBase2Support() {
try {
Expand Down
5 changes: 3 additions & 2 deletions intg/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
</plugins>
Expand Down
29 changes: 15 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -674,6 +674,9 @@
</profiles>

<properties>
<maven-compiler-plugin>3.13.0</maven-compiler-plugin>
<maven-shade-plugin>3.4.0</maven-shade-plugin>
<maven-war-plugin>3.4.0</maven-war-plugin>
<akka.version>2.3.7</akka.version>
<antlr4.plugin.version>4.5</antlr4.plugin.version>
<antlr4.version>4.7</antlr4.version>
Expand All @@ -699,7 +702,8 @@
<dropwizard-metrics>3.2.2</dropwizard-metrics>
<elasticsearch.version>7.16.2</elasticsearch.version>
<entity.repository.impl>org.apache.atlas.repository.audit.InMemoryEntityAuditRepository</entity.repository.impl>
<enunciate-maven-plugin.version>2.13.2</enunciate-maven-plugin.version>
<!--<enunciate-maven-plugin.version>2.13.2</enunciate-maven-plugin.version>-->
<enunciate-maven-plugin.version>2.17.0</enunciate-maven-plugin.version>
<failsafe.version>2.18.1</failsafe.version>
<falcon.version>0.8</falcon.version>
<fastutil.version>6.5.16</fastutil.version>
Expand Down Expand Up @@ -1775,10 +1779,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<version>${maven-compiler-plugin}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>17</source>
<target>17</target>
</configuration>
</plugin>

Expand Down Expand Up @@ -1821,7 +1825,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<version>${maven-war-plugin}</version>
</plugin>

<plugin>
Expand All @@ -1842,12 +1846,6 @@
<version>${maven-site-plugin.version}</version>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.5</version>
</plugin>

<!-- Source code metrics: mvn javancss:report or mvn site -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
Expand Down Expand Up @@ -2172,11 +2170,14 @@
</executions>
</plugin>

<plugin>
<!--The findbugs-maven-plugin is outdated and does not officially support Java 17. To analyze code with a tool like FindBugs on Java 17, you should migrate to SpotBugs-->

<!--<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.5</version>
<configuration>
<!--debug>true</debug -->
&lt;!&ndash;debug>true</debug &ndash;&gt;
<xmlOutput>true</xmlOutput>
<failOnError>false</failOnError>
<skip>${skipCheck}</skip>
Expand All @@ -2190,7 +2191,7 @@
<phase>verify</phase>
</execution>
</executions>
</plugin>
</plugin>-->

<!-- Source code metrics: mvn javancss:report or mvn site -->
<plugin>
Expand Down
5 changes: 3 additions & 2 deletions tools/classification-updater/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
</plugins>
Expand Down
4 changes: 2 additions & 2 deletions webapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -893,8 +893,8 @@
<configFile>${project.parent.basedir}/build-tools/src/main/resources/enunciate.xml</configFile>
<enunciateArtifactId/>
<docsDir>${project.build.directory}/api/v2/</docsDir>
<source>1.8</source>
<target>1.8</target>
<source>17</source>
<target>17</target>
<skipEnunciate>${skipEnunciate}</skipEnunciate>
</configuration>
<dependencies>
Expand Down

0 comments on commit 3018bd8

Please sign in to comment.