GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Issues (58)

1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
0 ignored issues
show
Reorder the elements of this pom to match the recommended order.
Loading history...
3
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
    <modelVersion>4.0.0</modelVersion>
5
6
    <groupId>io.mcarle</groupId>
0 ignored issues
show
Update this "groupId" to match the provided regular expression: '(com|org)(\.[a-z][a-z-0-9]*)+'
Loading history...
7
    <artifactId>sciurus-cache-redis</artifactId>
8
    <version>1.0.1-SNAPSHOT</version>
9
    <packaging>jar</packaging>
10
11
    <name>sciurus-cache-redis</name>
12
    <description>This is an implementation of Sciurus' CustomCache for Redis.</description>
13
    <url>https://github.com/mcarleio/sciurus-cache-redis</url>
14
15
    <properties>
16
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17
        <maven.compiler.source>1.8</maven.compiler.source>
18
        <maven.compiler.target>1.8</maven.compiler.target>
19
        <aspectj.version>1.9.4</aspectj.version>
20
    </properties>
21
22
    <dependencies>
23
        <dependency>
24
            <groupId>io.mcarle</groupId>
25
            <artifactId>sciurus</artifactId>
26
            <version>1.1.0</version>
27
        </dependency>
28
        <dependency>
29
            <groupId>io.lettuce</groupId>
30
            <artifactId>lettuce-core</artifactId>
31
            <version>5.1.8.RELEASE</version>
32
        </dependency>
33
34
35
        <dependency>
36
            <groupId>com.google.code.gson</groupId>
37
            <artifactId>gson</artifactId>
38
            <version>2.8.5</version>
39
            <scope>test</scope>
40
        </dependency>
41
        <dependency>
42
            <groupId>org.junit.jupiter</groupId>
43
            <artifactId>junit-jupiter-engine</artifactId>
44
            <version>5.5.1</version>
45
            <scope>test</scope>
46
        </dependency>
47
        <dependency>
48
            <groupId>org.junit.jupiter</groupId>
49
            <artifactId>junit-jupiter-params</artifactId>
50
            <version>5.5.1</version>
51
            <scope>test</scope>
52
        </dependency>
53
        <dependency>
54
            <groupId>org.hamcrest</groupId>
55
            <artifactId>hamcrest</artifactId>
56
            <version>2.1</version>
57
            <scope>test</scope>
58
        </dependency>
59
        <dependency>
60
            <groupId>org.mockito</groupId>
61
            <artifactId>mockito-core</artifactId>
62
            <version>3.0.0</version>
63
            <scope>test</scope>
64
        </dependency>
65
        <dependency>
66
            <groupId>org.mockito</groupId>
67
            <artifactId>mockito-junit-jupiter</artifactId>
68
            <version>3.0.0</version>
69
            <scope>test</scope>
70
        </dependency>
71
72
        <!--Logging-->
73
        <dependency>
74
            <groupId>org.apache.logging.log4j</groupId>
75
            <artifactId>log4j-core</artifactId>
76
            <version>2.13.2</version>
77
            <scope>test</scope>
78
        </dependency>
79
        <dependency>
80
            <groupId>org.apache.logging.log4j</groupId>
81
            <artifactId>log4j-slf4j-impl</artifactId>
82
            <version>2.12.1</version>
83
        </dependency>
84
    </dependencies>
85
86
    <build>
87
        <plugins>
88
            <plugin>
89
                <groupId>org.apache.maven.plugins</groupId>
90
                <artifactId>maven-surefire-plugin</artifactId>
91
                <version>3.0.0-M3</version>
92
            </plugin>
93
            <plugin>
94
                <groupId>org.apache.maven.plugins</groupId>
95
                <artifactId>maven-jar-plugin</artifactId>
96
                <version>3.1.2</version>
97
                <configuration>
98
                    <excludes>
99
                        <exclude>builddef.lst</exclude>
100
                    </excludes>
101
                </configuration>
102
            </plugin>
103
            <plugin>
104
                <groupId>org.codehaus.mojo</groupId>
105
                <artifactId>aspectj-maven-plugin</artifactId>
106
                <version>1.11</version>
107
                <executions>
108
                    <execution>
109
                        <goals>
110
                            <goal>test-compile</goal>
111
                        </goals>
112
                    </execution>
113
                </executions>
114
                <configuration>
115
                    <complianceLevel>${maven.compiler.source}</complianceLevel>
116
                    <source>${maven.compiler.source}</source>
117
                    <target>${maven.compiler.target}</target>
118
                    <aspectLibraries>
119
                        <aspectLibrary>
120
                            <groupId>io.mcarle</groupId>
121
                            <artifactId>sciurus</artifactId>
122
                        </aspectLibrary>
123
                    </aspectLibraries>
124
                </configuration>
125
                <dependencies>
126
                    <dependency>
127
                        <groupId>org.aspectj</groupId>
128
                        <artifactId>aspectjtools</artifactId>
129
                        <version>${aspectj.version}</version>
130
                    </dependency>
131
                </dependencies>
132
            </plugin>
133
            <plugin>
134
                <groupId>org.jacoco</groupId>
135
                <artifactId>jacoco-maven-plugin</artifactId>
136
                <version>0.8.4</version>
137
                <executions>
138
                    <execution>
139
                        <id>default-prepare-agent</id>
140
                        <goals>
141
                            <goal>prepare-agent</goal>
142
                        </goals>
143
                    </execution>
144
                    <execution>
145
                        <id>default-report</id>
146
                        <phase>prepare-package</phase>
147
                        <goals>
148
                            <goal>report</goal>
149
                        </goals>
150
                    </execution>
151
                    <execution>
152
                        <id>default-check</id>
153
                        <goals>
154
                            <goal>check</goal>
155
                        </goals>
156
                        <configuration>
157
                            <rules>
158
                                <rule>
159
                                    <element>BUNDLE</element>
160
                                    <limits>
161
                                        <limit>
162
                                            <counter>INSTRUCTION</counter>
163
                                            <value>COVEREDRATIO</value>
164
                                            <minimum>1</minimum>
165
                                        </limit>
166
                                        <limit>
167
                                            <counter>BRANCH</counter>
168
                                            <value>COVEREDRATIO</value>
169
                                            <minimum>1</minimum>
170
                                        </limit>
171
                                        <limit>
172
                                            <counter>CLASS</counter>
173
                                            <value>MISSEDCOUNT</value>
174
                                            <maximum>0</maximum>
175
                                        </limit>
176
                                        <limit>
177
                                            <counter>METHOD</counter>
178
                                            <value>MISSEDCOUNT</value>
179
                                            <maximum>0</maximum>
180
                                        </limit>
181
                                    </limits>
182
                                </rule>
183
                            </rules>
184
                        </configuration>
185
                    </execution>
186
                </executions>
187
            </plugin>
188
        </plugins>
189
    </build>
190
191
    <profiles>
192
        <profile>
193
            <id>release</id>
194
            <build>
195
                <plugins>
196
                    <plugin>
197
                        <groupId>org.apache.maven.plugins</groupId>
198
                        <artifactId>maven-release-plugin</artifactId>
199
                        <version>2.5.3</version>
200
                        <configuration>
201
                            <pushChanges>false</pushChanges>
202
                            <localCheckout>true</localCheckout>
203
                            <useReleaseProfile>false</useReleaseProfile>
204
                            <releaseProfiles>release</releaseProfiles>
205
                            <goals>deploy</goals>
206
                            <preparationGoals>notice:generate scm:checkin</preparationGoals>
207
                        </configuration>
208
                    </plugin>
209
                    <plugin>
210
                        <groupId>org.apache.maven.plugins</groupId>
211
                        <artifactId>maven-scm-plugin</artifactId>
212
                        <version>1.11.2</version>
213
                        <configuration>
214
                            <message>[maven-scm-plugin] updated NOTICE</message>
215
                            <includes>NOTICE</includes>
216
                            <pushChanges>false</pushChanges>
217
                        </configuration>
218
                    </plugin>
219
                    <plugin>
220
                        <groupId>org.jasig.maven</groupId>
221
                        <artifactId>maven-notice-plugin</artifactId>
222
                        <version>1.1.0</version>
223
                        <configuration>
224
                            <noticeTemplate>NOTICE.template</noticeTemplate>
225
                            <excludeScopes>
226
                                <excludeScope>test</excludeScope>
227
                            </excludeScopes>
228
229
                            <licenseMapping>
230
                                <param>https://source.jasig.org/licenses/license-mappings.xml</param>
231
                            </licenseMapping>
232
                        </configuration>
233
                    </plugin>
234
                    <plugin>
235
                        <groupId>org.apache.maven.plugins</groupId>
236
                        <artifactId>maven-javadoc-plugin</artifactId>
237
                        <version>3.1.1</version>
238
                        <executions>
239
                            <execution>
240
                                <id>attach-javadoc</id>
241
                                <goals>
242
                                    <goal>jar</goal>
243
                                </goals>
244
                            </execution>
245
                        </executions>
246
                    </plugin>
247
                    <plugin>
248
                        <groupId>org.apache.maven.plugins</groupId>
249
                        <artifactId>maven-source-plugin</artifactId>
250
                        <version>3.1.0</version>
251
                        <executions>
252
                            <execution>
253
                                <id>attach-source</id>
254
                                <phase>verify</phase>
255
                                <goals>
256
                                    <goal>jar-no-fork</goal>
257
                                </goals>
258
                            </execution>
259
                        </executions>
260
                    </plugin>
261
                    <plugin>
262
                        <groupId>org.apache.maven.plugins</groupId>
263
                        <artifactId>maven-gpg-plugin</artifactId>
264
                        <version>1.6</version>
265
                        <executions>
266
                            <execution>
267
                                <id>sign-artifacts</id>
268
                                <phase>verify</phase>
269
                                <goals>
270
                                    <goal>sign</goal>
271
                                </goals>
272
                            </execution>
273
                        </executions>
274
                    </plugin>
275
                    <plugin>
276
                        <groupId>org.sonatype.plugins</groupId>
277
                        <artifactId>nexus-staging-maven-plugin</artifactId>
278
                        <version>1.6.8</version>
279
                        <extensions>true</extensions>
280
                        <configuration>
281
                            <serverId>ossrh</serverId>
282
                            <nexusUrl>https://oss.sonatype.org/</nexusUrl>
283
                            <autoReleaseAfterClose>true</autoReleaseAfterClose>
284
                        </configuration>
285
                    </plugin>
286
                </plugins>
287
            </build>
288
        </profile>
289
    </profiles>
290
291
    <licenses>
292
        <license>
293
            <name>The Apache License, Version 2.0</name>
294
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
295
        </license>
296
    </licenses>
297
298
    <issueManagement>
299
        <url>https://github.com/mcarleio/sciurus-cache-redis/issues</url>
300
        <system>GitHub Issues</system>
301
    </issueManagement>
302
303
    <scm>
304
        <url>https://github.com/mcarleio/sciurus-cache-redis</url>
305
        <connection>scm:git:[email protected]:mcarleio/sciurus-cache-redis.git</connection>
306
        <developerConnection>scm:git:[email protected]:mcarleio/sciurus-cache-redis.git</developerConnection>
307
        <tag>HEAD</tag>
308
    </scm>
309
310
    <distributionManagement>
311
        <snapshotRepository>
312
            <id>ossrh</id>
313
            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
314
        </snapshotRepository>
315
    </distributionManagement>
316
317
    <developers>
318
        <developer>
319
            <name>Marcel Carlé</name>
320
            <email>[email protected]</email>
321
            <url>https://github.com/mcarleio</url>
322
        </developer>
323
    </developers>
324
325
    <inceptionYear>2019</inceptionYear>
326
327
</project>