Skip to content

Commit

Permalink
Spotless conf fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aragozin committed Sep 11, 2021
1 parent e10701e commit 6e57ac1
Show file tree
Hide file tree
Showing 3 changed files with 201 additions and 199 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.java text eol=lf
*.xml text eol=lf
130 changes: 65 additions & 65 deletions sjk-agent/pom.xml
Original file line number Diff line number Diff line change
@@ -1,65 +1,65 @@
<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/maven-v4_0_0.xsd">

<!--
Copyright 2020 Alexey Ragozin
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.gridkit.jvmtool</groupId>
<artifactId>jvmtool-umbrella-pom</artifactId>
<version>0.20-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>sjk-agent</artifactId>
<name>${project.groupId}::${project.artifactId}</name>
<description>JVM agent libary</description>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Main-Class>org.gridkit.jvmtool.SJK</Main-Class>
<Premain-Class>org.gridkit.jvmtool.agent.SjkAgent</Premain-Class>
<Agent-Class>org.gridkit.jvmtool.agent.SjkAgent</Agent-Class>
<Can-Redefine-Classes>false</Can-Redefine-Classes>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>
<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/maven-v4_0_0.xsd">

<!--
Copyright 2020 Alexey Ragozin
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.gridkit.jvmtool</groupId>
<artifactId>jvmtool-umbrella-pom</artifactId>
<version>0.20-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>sjk-agent</artifactId>
<name>${project.groupId}::${project.artifactId}</name>
<description>JVM agent libary</description>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Main-Class>org.gridkit.jvmtool.SJK</Main-Class>
<Premain-Class>org.gridkit.jvmtool.agent.SjkAgent</Premain-Class>
<Agent-Class>org.gridkit.jvmtool.agent.SjkAgent</Agent-Class>
<Can-Redefine-Classes>false</Can-Redefine-Classes>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>
Loading

0 comments on commit 6e57ac1

Please sign in to comment.