-
Notifications
You must be signed in to change notification settings - Fork 4
/
pom.xml
48 lines (48 loc) · 1.58 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0"?>
<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>
<groupId>org.eolang</groupId>
<artifactId>org.eolang.jetbrains</artifactId>
<version>0.0.0</version>
<name>eo-intellij-plugin</name>
<description>Plugin for EO lang</description>
<url>https://github.com/objectionary/eo-intellij-plugin</url>
<inceptionYear>2022</inceptionYear>
<organization>
<name>EO</name>
<url>https://github.com/objectionary/eo-intellij-plugin</url>
</organization>
<licenses>
<license>
<name>MIT</name>
<url>https://www.eolang.org/LICENSE.txt</url>
<distribution>site</distribution>
</license>
</licenses>
<developers>
<developer>
<id>1</id>
<name>Stepan Strunkov</name>
<email>stepa.strunkov@gmail.com</email>
<roles>
<role>Developer</role>
</roles>
<timezone>-7</timezone>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>com.qulice</groupId>
<artifactId>qulice-maven-plugin</artifactId>
<configuration>
<license>file:LICENSE.txt</license>
<excludes combine.children="append">
<exclude>pmd:/src/main/java/org/eolang/jetbrains/parser/.*</exclude>
<exclude>checkstyle:/src/main/java/org/eolang/jetbrains/parser/.*</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>