Skip to content

Commit 815b975

Browse files
Merge pull request #7 from junaid7haque/main
Updated categories.txt by adding 'background' and 'therapeutic'
2 parents 81bb034 + 2c6a56a commit 815b975

2 files changed

Lines changed: 28 additions & 0 deletions

File tree

categories.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
arrow
2+
background
23
cell_element
34
cell_type
45
compound
56
human_tissue
67
protein
78
receptor
9+
therapeutic
810
transporter

pom.xml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,32 @@
127127
</resources>
128128
<plugins>
129129
<!-- Generate jar with dependencies -->
130+
<plugin>
131+
<groupId>org.apache.maven.plugins</groupId>
132+
<artifactId>maven-checkstyle-plugin</artifactId>
133+
<version>3.1.1</version>
134+
<dependencies>
135+
<!-- This dependency allows Checkstyle to understand Java 11 syntax -->
136+
<dependency>
137+
<groupId>com.puppycrawl.tools</groupId>
138+
<artifactId>checkstyle</artifactId>
139+
<version>8.44</version>
140+
</dependency>
141+
</dependencies>
142+
<executions>
143+
<execution>
144+
<id>checkstyle-check</id>
145+
<goals>
146+
<goal>check</goal>
147+
</goals>
148+
</execution>
149+
</executions>
150+
<configuration>
151+
<configLocation>checkstyle.xml</configLocation>
152+
<!-- Optional: Set encoding -->
153+
<encoding>UTF-8</encoding>
154+
</configuration>
155+
</plugin>
130156
<plugin>
131157
<artifactId>maven-assembly-plugin</artifactId>
132158
<version>2.6</version>

0 commit comments

Comments
 (0)