Skip to content

Commit 18b5ab9

Browse files
committed
[responsive-validator] - added addtional methods for verification offsets
1 parent d648beb commit 18b5ab9

File tree

3 files changed

+161
-127
lines changed

3 files changed

+161
-127
lines changed

pom.xml

Lines changed: 68 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -39,79 +39,79 @@
3939
<maven.compiler.target>1.8</maven.compiler.target>
4040
</properties>
4141

42-
<build>
43-
<plugins>
44-
<plugin>
45-
<groupId>org.apache.maven.plugins</groupId>
46-
<artifactId>maven-gpg-plugin</artifactId>
47-
<executions>
48-
<execution>
49-
<id>sign-artifacts</id>
50-
<phase>verify</phase>
51-
<goals>
52-
<goal>sign</goal>
53-
</goals>
54-
</execution>
55-
</executions>
56-
</plugin>
42+
<!--<build>-->
43+
<!--<plugins>-->
44+
<!--<plugin>-->
45+
<!--<groupId>org.apache.maven.plugins</groupId>-->
46+
<!--<artifactId>maven-gpg-plugin</artifactId>-->
47+
<!--<executions>-->
48+
<!--<execution>-->
49+
<!--<id>sign-artifacts</id>-->
50+
<!--<phase>verify</phase>-->
51+
<!--<goals>-->
52+
<!--<goal>sign</goal>-->
53+
<!--</goals>-->
54+
<!--</execution>-->
55+
<!--</executions>-->
56+
<!--</plugin>-->
5757

58-
<plugin>
59-
<groupId>org.sonatype.plugins</groupId>
60-
<artifactId>nexus-staging-maven-plugin</artifactId>
61-
<version>1.6.3</version>
62-
<extensions>true</extensions>
63-
<configuration>
64-
<serverId>ossrh</serverId>
65-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
66-
<stagingProfileId>22f8da536d8418</stagingProfileId> <!--Staging-->
67-
<!--<stagingProfileId>7edbe315063867</stagingProfileId> &lt;!&ndash;Central staging&ndash;&gt;-->
68-
<skipStagingRepositoryClose>true</skipStagingRepositoryClose>
69-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
70-
</configuration>
71-
</plugin>
58+
<!--<plugin>-->
59+
<!--<groupId>org.sonatype.plugins</groupId>-->
60+
<!--<artifactId>nexus-staging-maven-plugin</artifactId>-->
61+
<!--<version>1.6.3</version>-->
62+
<!--<extensions>true</extensions>-->
63+
<!--<configuration>-->
64+
<!--<serverId>ossrh</serverId>-->
65+
<!--<nexusUrl>https://oss.sonatype.org/</nexusUrl>-->
66+
<!--<stagingProfileId>22f8da536d8418</stagingProfileId> &lt;!&ndash;Staging&ndash;&gt;-->
67+
<!--&lt;!&ndash;<stagingProfileId>7edbe315063867</stagingProfileId> &lt;!&ndash;Central staging&ndash;&gt;&ndash;&gt;-->
68+
<!--<skipStagingRepositoryClose>true</skipStagingRepositoryClose>-->
69+
<!--<autoReleaseAfterClose>true</autoReleaseAfterClose>-->
70+
<!--</configuration>-->
71+
<!--</plugin>-->
7272

73-
<plugin>
74-
<groupId>org.apache.maven.plugins</groupId>
75-
<artifactId>maven-source-plugin</artifactId>
76-
<executions>
77-
<execution>
78-
<id>attach-sources</id>
79-
<goals>
80-
<goal>jar</goal>
81-
</goals>
82-
</execution>
83-
</executions>
84-
</plugin>
73+
<!--<plugin>-->
74+
<!--<groupId>org.apache.maven.plugins</groupId>-->
75+
<!--<artifactId>maven-source-plugin</artifactId>-->
76+
<!--<executions>-->
77+
<!--<execution>-->
78+
<!--<id>attach-sources</id>-->
79+
<!--<goals>-->
80+
<!--<goal>jar</goal>-->
81+
<!--</goals>-->
82+
<!--</execution>-->
83+
<!--</executions>-->
84+
<!--</plugin>-->
8585

86-
<plugin>
87-
<groupId>org.apache.maven.plugins</groupId>
88-
<artifactId>maven-javadoc-plugin</artifactId>
89-
<executions>
90-
<execution>
91-
<id>attach-javadocs</id>
92-
<goals>
93-
<goal>jar</goal>
94-
</goals>
95-
</execution>
96-
</executions>
97-
<configuration>
98-
<additionalparam>-Xdoclint:none</additionalparam>
99-
</configuration>
100-
</plugin>
86+
<!--<plugin>-->
87+
<!--<groupId>org.apache.maven.plugins</groupId>-->
88+
<!--<artifactId>maven-javadoc-plugin</artifactId>-->
89+
<!--<executions>-->
90+
<!--<execution>-->
91+
<!--<id>attach-javadocs</id>-->
92+
<!--<goals>-->
93+
<!--<goal>jar</goal>-->
94+
<!--</goals>-->
95+
<!--</execution>-->
96+
<!--</executions>-->
97+
<!--<configuration>-->
98+
<!--<additionalparam>-Xdoclint:none</additionalparam>-->
99+
<!--</configuration>-->
100+
<!--</plugin>-->
101101

102-
</plugins>
103-
</build>
102+
<!--</plugins>-->
103+
<!--</build>-->
104104

105-
<distributionManagement>
106-
<snapshotRepository>
107-
<id>ossrh</id>
108-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
109-
</snapshotRepository>
110-
<repository>
111-
<id>ossrh</id>
112-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
113-
</repository>
114-
</distributionManagement>
105+
<!--<distributionManagement>-->
106+
<!--<snapshotRepository>-->
107+
<!--<id>ossrh</id>-->
108+
<!--<url>https://oss.sonatype.org/content/repositories/snapshots</url>-->
109+
<!--</snapshotRepository>-->
110+
<!--<repository>-->
111+
<!--<id>ossrh</id>-->
112+
<!--<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>-->
113+
<!--</repository>-->
114+
<!--</distributionManagement>-->
115115

116116
<dependencies>
117117
<dependency>

0 commit comments

Comments
 (0)