Skip to content

Commit

Permalink
chore(config): update CODEOWNER and scalastyle (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
baifuyu authored Dec 12, 2023
1 parent 7f87320 commit 73637d8
Show file tree
Hide file tree
Showing 3 changed files with 491 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
# or implied.

@baifuyu
@baifuyu @leywar @yixianlzz

/cloudext [email protected]
/python [email protected] [email protected] [email protected]
/reasoner [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected]
/cloudext [email protected] [email protected]
/python [email protected] [email protected] [email protected]
/reasoner [email protected] [email protected] [email protected] [email protected]
/builder [email protected] [email protected]
/server [email protected] [email protected] [email protected]

26 changes: 26 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@
<json4s.version>4.0.6</json4s.version>
<kgreasoner-version>20231018-OPENSOURCE</kgreasoner-version>
<logback.version>1.2.11</logback.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<scala.binary.version>2.11</scala.binary.version>
<scala.version>2.11.12</scala.version>
<spock.version>2.2-M1-groovy-3.0</spock.version>
Expand Down Expand Up @@ -454,6 +456,30 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.scalastyle</groupId>
<artifactId>scalastyle-maven-plugin</artifactId>
<version>1.0.0</version>
<configuration>
<verbose>false</verbose>
<failOnViolation>true</failOnViolation>
<includeTestSourceDirectory>false</includeTestSourceDirectory>
<failOnWarning>false</failOnWarning>
<sourceDirectory>${project.basedir}/src/main/scala</sourceDirectory>
<testSourceDirectory>${project.basedir}/src/test/scala</testSourceDirectory>
<configLocation>scalastyle-config.xml</configLocation>
<outputFile>${project.basedir}/target/scalastyle-output.xml</outputFile>
<inputEncoding>${project.build.sourceEncoding}</inputEncoding>
<outputEncoding>${project.reporting.outputEncoding}</outputEncoding>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
Expand Down
Loading

0 comments on commit 73637d8

Please sign in to comment.