Skip to content

Commit b3ec50b

Browse files
Merge pull request #46 from phocassoftware/pom-cleanup
remove duplicates
2 parents f4ca388 + a34ed82 commit b3ec50b

File tree

6 files changed

+25
-407
lines changed

6 files changed

+25
-407
lines changed

graphql-builder/pom.xml

Lines changed: 0 additions & 135 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,9 @@
2828
<junit.jupiter.version>5.12.0</junit.jupiter.version>
2929
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3030
<jackson.version>2.18.3</jackson.version>
31-
<pitest.version>1.18.2</pitest.version>
32-
<pitest-junit5-plugin.version>1.2.2</pitest-junit5-plugin.version>
3331
<graphql.version>22.3</graphql.version>
3432
</properties>
3533

36-
3734
<licenses>
3835
<license>
3936
<name>Apache License, Version 2.0</name>
@@ -42,101 +39,6 @@
4239
</license>
4340
</licenses>
4441

45-
<build>
46-
<plugins>
47-
<plugin>
48-
<groupId>org.apache.maven.plugins</groupId>
49-
<artifactId>maven-compiler-plugin</artifactId>
50-
<configuration>
51-
<source>21</source>
52-
<target>21</target>
53-
<compilerArgument>-parameters</compilerArgument>
54-
</configuration>
55-
</plugin>
56-
<plugin>
57-
<groupId>org.apache.maven.plugins</groupId>
58-
<artifactId>maven-release-plugin</artifactId>
59-
<version>3.1.1</version>
60-
</plugin>
61-
<plugin>
62-
<groupId>org.apache.maven.plugins</groupId>
63-
<artifactId>maven-source-plugin</artifactId>
64-
<executions>
65-
<execution>
66-
<id>attach-sources</id>
67-
<goals>
68-
<goal>jar-no-fork</goal>
69-
</goals>
70-
</execution>
71-
</executions>
72-
</plugin>
73-
<plugin>
74-
<groupId>org.apache.maven.plugins</groupId>
75-
<artifactId>maven-javadoc-plugin</artifactId>
76-
<version>3.11.2</version>
77-
<executions>
78-
<execution>
79-
<id>attach-javadocs</id>
80-
<goals>
81-
<goal>jar</goal>
82-
</goals>
83-
</execution>
84-
</executions>
85-
</plugin>
86-
<plugin>
87-
<groupId>com.hubspot.maven.plugins</groupId>
88-
<artifactId>prettier-maven-plugin</artifactId>
89-
<version>0.22</version>
90-
<configuration>
91-
<prettierJavaVersion>1.4.0</prettierJavaVersion>
92-
<printWidth>160</printWidth>
93-
<tabWidth>4</tabWidth>
94-
<useTabs>true</useTabs>
95-
<ignoreConfigFile>true</ignoreConfigFile>
96-
<ignoreEditorConfig>true</ignoreEditorConfig>
97-
</configuration>
98-
<executions>
99-
<execution>
100-
<phase>validate</phase>
101-
</execution>
102-
</executions>
103-
</plugin>
104-
<plugin>
105-
<groupId>org.pitest</groupId>
106-
<artifactId>pitest-maven</artifactId>
107-
<version>${pitest.version}</version>
108-
<dependencies>
109-
<dependency>
110-
<groupId>org.pitest</groupId>
111-
<artifactId>pitest-junit5-plugin</artifactId>
112-
<version>${pitest-junit5-plugin.version}</version>
113-
</dependency>
114-
</dependencies>
115-
<configuration>
116-
<threads>4</threads>
117-
<timestampedReports>false</timestampedReports>
118-
<failWhenNoMutations>false</failWhenNoMutations>
119-
<mutators>
120-
<mutator>STRONGER</mutator>
121-
</mutators>
122-
</configuration>
123-
</plugin>
124-
<plugin>
125-
<groupId>com.mycila</groupId>
126-
<artifactId>license-maven-plugin</artifactId>
127-
<version>4.6</version>
128-
<configuration>
129-
<licenseSets>
130-
<licenseSet>
131-
<header>src/license/license.txt</header>
132-
</licenseSet>
133-
</licenseSets>
134-
</configuration>
135-
</plugin>
136-
137-
</plugins>
138-
</build>
139-
14042
<dependencies>
14143
<dependency>
14244
<groupId>com.graphql-java</groupId>
@@ -203,42 +105,5 @@
203105
<version>1.5.3</version>
204106
<scope>test</scope>
205107
</dependency>
206-
207108
</dependencies>
208-
209-
210-
<profiles>
211-
<profile>
212-
<id>sonatype</id>
213-
<build>
214-
<plugins>
215-
<plugin>
216-
<groupId>org.apache.maven.plugins</groupId>
217-
<artifactId>maven-gpg-plugin</artifactId>
218-
<version>3.2.7</version>
219-
<executions>
220-
<execution>
221-
<id>sign-artifacts</id>
222-
<phase>verify</phase>
223-
<goals>
224-
<goal>sign</goal>
225-
</goals>
226-
</execution>
227-
</executions>
228-
</plugin>
229-
<plugin>
230-
<groupId>org.sonatype.plugins</groupId>
231-
<artifactId>nexus-staging-maven-plugin</artifactId>
232-
<version>1.7.0</version>
233-
<extensions>true</extensions>
234-
<configuration>
235-
<serverId>sonatype</serverId>
236-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
237-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
238-
</configuration>
239-
</plugin>
240-
</plugins>
241-
</build>
242-
</profile>
243-
</profiles>
244109
</project>

graphql-database-dynmodb-history-lambda/pom.xml

Lines changed: 0 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -78,64 +78,4 @@
7878
</plugin>
7979
</plugins>
8080
</build>
81-
82-
<profiles>
83-
<profile>
84-
<id>sonatype</id>
85-
<build>
86-
<plugins>
87-
<plugin>
88-
<groupId>org.apache.maven.plugins</groupId>
89-
<artifactId>maven-source-plugin</artifactId>
90-
<executions>
91-
<execution>
92-
<id>attach-sources</id>
93-
<goals>
94-
<goal>jar-no-fork</goal>
95-
</goals>
96-
</execution>
97-
</executions>
98-
</plugin>
99-
<plugin>
100-
<groupId>org.apache.maven.plugins</groupId>
101-
<artifactId>maven-javadoc-plugin</artifactId>
102-
<version>3.11.2</version>
103-
<executions>
104-
<execution>
105-
<id>attach-javadocs</id>
106-
<goals>
107-
<goal>jar</goal>
108-
</goals>
109-
</execution>
110-
</executions>
111-
</plugin>
112-
<plugin>
113-
<groupId>org.apache.maven.plugins</groupId>
114-
<artifactId>maven-gpg-plugin</artifactId>
115-
<version>3.2.7</version>
116-
<executions>
117-
<execution>
118-
<id>sign-artifacts</id>
119-
<phase>verify</phase>
120-
<goals>
121-
<goal>sign</goal>
122-
</goals>
123-
</execution>
124-
</executions>
125-
</plugin>
126-
<plugin>
127-
<groupId>org.sonatype.plugins</groupId>
128-
<artifactId>nexus-staging-maven-plugin</artifactId>
129-
<version>1.7.0</version>
130-
<extensions>true</extensions>
131-
<configuration>
132-
<serverId>sonatype</serverId>
133-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
134-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
135-
</configuration>
136-
</plugin>
137-
</plugins>
138-
</build>
139-
</profile>
140-
</profiles>
14181
</project>

graphql-database-manager-dynamo/pom.xml

Lines changed: 0 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -80,64 +80,4 @@
8080
</plugin>
8181
</plugins>
8282
</build>
83-
84-
<profiles>
85-
<profile>
86-
<id>sonatype</id>
87-
<build>
88-
<plugins>
89-
<plugin>
90-
<groupId>org.apache.maven.plugins</groupId>
91-
<artifactId>maven-source-plugin</artifactId>
92-
<executions>
93-
<execution>
94-
<id>attach-sources</id>
95-
<goals>
96-
<goal>jar-no-fork</goal>
97-
</goals>
98-
</execution>
99-
</executions>
100-
</plugin>
101-
<plugin>
102-
<groupId>org.apache.maven.plugins</groupId>
103-
<artifactId>maven-javadoc-plugin</artifactId>
104-
<version>3.11.2</version>
105-
<executions>
106-
<execution>
107-
<id>attach-javadocs</id>
108-
<goals>
109-
<goal>jar</goal>
110-
</goals>
111-
</execution>
112-
</executions>
113-
</plugin>
114-
<plugin>
115-
<groupId>org.apache.maven.plugins</groupId>
116-
<artifactId>maven-gpg-plugin</artifactId>
117-
<version>3.2.7</version>
118-
<executions>
119-
<execution>
120-
<id>sign-artifacts</id>
121-
<phase>verify</phase>
122-
<goals>
123-
<goal>sign</goal>
124-
</goals>
125-
</execution>
126-
</executions>
127-
</plugin>
128-
<plugin>
129-
<groupId>org.sonatype.plugins</groupId>
130-
<artifactId>nexus-staging-maven-plugin</artifactId>
131-
<version>1.7.0</version>
132-
<extensions>true</extensions>
133-
<configuration>
134-
<serverId>sonatype</serverId>
135-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
136-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
137-
</configuration>
138-
</plugin>
139-
</plugins>
140-
</build>
141-
</profile>
142-
</profiles>
14383
</project>

graphql-database-manager-memory/pom.xml

Lines changed: 0 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -36,88 +36,4 @@
3636
<scope>test</scope>
3737
</dependency>
3838
</dependencies>
39-
40-
<build>
41-
<plugins>
42-
<plugin>
43-
<groupId>org.apache.maven.plugins</groupId>
44-
<artifactId>maven-dependency-plugin</artifactId>
45-
<version>3.8.1</version>
46-
<executions>
47-
<execution>
48-
<id>copy</id>
49-
<phase>test-compile</phase>
50-
<goals>
51-
<goal>copy-dependencies</goal>
52-
</goals>
53-
<configuration>
54-
<includeScope>test</includeScope>
55-
<includeTypes>so,dll,dylib</includeTypes>
56-
<outputDirectory>${project.basedir}/native-libs</outputDirectory>
57-
</configuration>
58-
</execution>
59-
</executions>
60-
</plugin>
61-
</plugins>
62-
</build>
63-
64-
<profiles>
65-
<profile>
66-
<id>sonatype</id>
67-
<build>
68-
<plugins>
69-
<plugin>
70-
<groupId>org.apache.maven.plugins</groupId>
71-
<artifactId>maven-source-plugin</artifactId>
72-
<executions>
73-
<execution>
74-
<id>attach-sources</id>
75-
<goals>
76-
<goal>jar-no-fork</goal>
77-
</goals>
78-
</execution>
79-
</executions>
80-
</plugin>
81-
<plugin>
82-
<groupId>org.apache.maven.plugins</groupId>
83-
<artifactId>maven-javadoc-plugin</artifactId>
84-
<version>3.11.2</version>
85-
<executions>
86-
<execution>
87-
<id>attach-javadocs</id>
88-
<goals>
89-
<goal>jar</goal>
90-
</goals>
91-
</execution>
92-
</executions>
93-
</plugin>
94-
<plugin>
95-
<groupId>org.apache.maven.plugins</groupId>
96-
<artifactId>maven-gpg-plugin</artifactId>
97-
<version>3.2.7</version>
98-
<executions>
99-
<execution>
100-
<id>sign-artifacts</id>
101-
<phase>verify</phase>
102-
<goals>
103-
<goal>sign</goal>
104-
</goals>
105-
</execution>
106-
</executions>
107-
</plugin>
108-
<plugin>
109-
<groupId>org.sonatype.plugins</groupId>
110-
<artifactId>nexus-staging-maven-plugin</artifactId>
111-
<version>1.7.0</version>
112-
<extensions>true</extensions>
113-
<configuration>
114-
<serverId>sonatype</serverId>
115-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
116-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
117-
</configuration>
118-
</plugin>
119-
</plugins>
120-
</build>
121-
</profile>
122-
</profiles>
12339
</project>

0 commit comments

Comments
 (0)