-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ref: Split jicoco into -jetty, -mucclient and -health-checker. (#213)
- Loading branch information
Showing
32 changed files
with
430 additions
and
324 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
~ Copyright @ 2018 - present 8x8, Inc. | ||
~ | ||
~ 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. | ||
--> | ||
|
||
<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/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.jitsi</groupId> | ||
<artifactId>jicoco-parent</artifactId> | ||
<version>1.1-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>jicoco-health-checker</artifactId> | ||
<version>1.1-SNAPSHOT</version> | ||
<name>jicoco-health-checker</name> | ||
<description>Jitsi Common Components - Health Checker</description> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.jetbrains.kotlin</groupId> | ||
<artifactId>kotlin-stdlib-jdk8</artifactId> | ||
</dependency> | ||
<!-- org.jitsi --> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>jitsi-utils</artifactId> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.jetbrains.kotlin</groupId> | ||
<artifactId>kotlin-maven-plugin</artifactId> | ||
<version>${kotlin.version}</version> | ||
<executions> | ||
<execution> | ||
<id>compile</id> | ||
<phase>compile</phase> | ||
<goals> | ||
<goal>compile</goal> | ||
</goals> | ||
<configuration> | ||
<sourceDirs> | ||
<source>src/main/kotlin</source> | ||
</sourceDirs> | ||
</configuration> | ||
</execution> | ||
<execution> | ||
<id>test-compile</id> | ||
<phase>test-compile</phase> | ||
<goals> | ||
<goal>test-compile</goal> | ||
</goals> | ||
<configuration> | ||
<sourceDirs> | ||
<source>src/test/kotlin</source> | ||
<source>src/test/java</source> | ||
</sourceDirs> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<jvmTarget>11</jvmTarget> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.10.1</version> | ||
<executions> | ||
<execution> | ||
<id>default-compile</id> | ||
<phase>none</phase> | ||
</execution> | ||
<execution> | ||
<id>default-testCompile</id> | ||
<phase>none</phase> | ||
</execution> | ||
<execution> | ||
<id>java-compile</id> | ||
<phase>compile</phase> | ||
<goals> | ||
<goal>compile</goal> | ||
</goals> | ||
</execution> | ||
<execution> | ||
<id>java-test-compile</id> | ||
<phase>test-compile</phase> | ||
<goals> | ||
<goal>testCompile</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<release>11</release> | ||
<compilerArgs> | ||
<arg>-Xlint:all,-serial</arg> | ||
</compilerArgs> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?xml version="1.0"?> | ||
<!DOCTYPE module PUBLIC | ||
"-//Checkstyle//DTD Checkstyle Configuration 1.3//EN" | ||
"https://checkstyle.org/dtds/configuration_1_3.dtd"> | ||
|
||
<module name="Checker"> | ||
<module name="LineLength"> | ||
<property name="fileExtensions" value="java"/> | ||
<property name="max" value="120"/> | ||
<property name="ignorePattern" value="http://|https://"/> | ||
</module> | ||
|
||
<module name="TreeWalker"> | ||
<module name="LeftCurly"> | ||
<property name="option" value="nl"/> | ||
<property name="tokens" value="LITERAL_CATCH"/> | ||
<property name="tokens" value="LITERAL_ELSE"/> | ||
<property name="tokens" value="LITERAL_FINALLY"/> | ||
<property name="tokens" value="LITERAL_IF"/> | ||
<property name="tokens" value="LITERAL_TRY"/> | ||
</module> | ||
|
||
<!-- Skips empty blocks {}, to not skip them: value="alone" --> | ||
<module name="RightCurly"> | ||
<property name="option" value="alone_or_singleline"/> | ||
</module> | ||
|
||
<module name="WhitespaceAfter"> | ||
<!-- Drops TYPECAST from default tokens --> | ||
<property name="tokens" value="COMMA , SEMI , LITERAL_IF , LITERAL_ELSE , LITERAL_WHILE , LITERAL_DO , LITERAL_FOR , DO_WHILE"/> | ||
</module> | ||
</module> | ||
|
||
<module name="FileTabCharacter"> | ||
<property name="eachLine" value="true"/> | ||
</module> | ||
</module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?xml version="1.0"?> | ||
<!DOCTYPE module PUBLIC | ||
"-//Checkstyle//DTD Checkstyle Configuration 1.3//EN" | ||
"https://checkstyle.org/dtds/configuration_1_3.dtd"> | ||
|
||
<module name="Checker"> | ||
<module name="LineLength"> | ||
<property name="fileExtensions" value="java"/> | ||
<property name="max" value="120"/> | ||
<property name="ignorePattern" value="http://|https://"/> | ||
</module> | ||
|
||
<module name="TreeWalker"> | ||
<module name="LeftCurly"> | ||
<property name="option" value="nl"/> | ||
<property name="tokens" value="LITERAL_CATCH"/> | ||
<property name="tokens" value="LITERAL_ELSE"/> | ||
<property name="tokens" value="LITERAL_FINALLY"/> | ||
<property name="tokens" value="LITERAL_IF"/> | ||
<property name="tokens" value="LITERAL_TRY"/> | ||
</module> | ||
|
||
<!-- Skips empty blocks {}, to not skip them: value="alone" --> | ||
<module name="RightCurly"> | ||
<property name="option" value="alone_or_singleline"/> | ||
</module> | ||
|
||
<module name="WhitespaceAfter"> | ||
<!-- Drops TYPECAST from default tokens --> | ||
<property name="tokens" value="COMMA , SEMI , LITERAL_IF , LITERAL_ELSE , LITERAL_WHILE , LITERAL_DO , LITERAL_FOR , DO_WHILE"/> | ||
</module> | ||
</module> | ||
|
||
<module name="FileTabCharacter"> | ||
<property name="eachLine" value="true"/> | ||
</module> | ||
</module> |
Oops, something went wrong.