|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 |
| -<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"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 4 | <modelVersion>4.0.0</modelVersion>
|
4 | 5 |
|
5 | 6 | <groupId>com.rapid7.presto</groupId>
|
6 | 7 | <artifactId>presto-query-builder</artifactId>
|
7 |
| - <version>0.0.32-SNAPSHOT</version> |
8 |
| - |
| 8 | + <version>0.0.33-SNAPSHOT</version> |
| 9 | + |
9 | 10 | <name>presto-query-builder</name>
|
10 |
| - <description>A Java library that will help you create queries for Presto programmatically. This will help you test your code and create dynamic queries.</description> |
| 11 | + <description>A Java library that will help you create queries for Presto programmatically. This will help you test |
| 12 | + your code and create dynamic queries. |
| 13 | + </description> |
11 | 14 | <url>https://github.com/rapid7/presto-query-builder</url>
|
12 | 15 |
|
| 16 | + <parent> |
| 17 | + <groupId>com.rapid7.insightvm</groupId> |
| 18 | + <artifactId>insightvm-parent-library-pom</artifactId> |
| 19 | + <version>9.0.24</version> |
| 20 | + </parent> |
| 21 | + |
13 | 22 | <organization>
|
14 | 23 | <name>Rapid 7, Inc.</name>
|
15 | 24 | <url>http://www.rapid7.com</url>
|
|
49 | 58 | </repository>
|
50 | 59 | </distributionManagement>
|
51 | 60 |
|
| 61 | + <properties> |
| 62 | + <presto.parser.version>0.249.1</presto.parser.version> |
| 63 | + </properties> |
| 64 | + |
52 | 65 | <dependencies>
|
53 | 66 | <dependency>
|
54 | 67 | <groupId>com.facebook.presto</groupId>
|
55 | 68 | <artifactId>presto-parser</artifactId>
|
56 |
| - <version>0.240.1</version> |
57 |
| - </dependency> |
58 |
| - |
59 |
| - <dependency> |
60 |
| - <groupId>com.google.guava</groupId> |
61 |
| - <artifactId>guava</artifactId> |
62 |
| - <version>24.1-jre</version> |
63 |
| - </dependency> |
64 |
| - |
65 |
| - <dependency> |
66 |
| - <groupId>junit</groupId> |
67 |
| - <artifactId>junit</artifactId> |
68 |
| - <version>4.12</version> |
69 |
| - <scope>test</scope> |
| 69 | + <version>${presto.parser.version}</version> |
70 | 70 | </dependency>
|
71 | 71 | </dependencies>
|
72 | 72 |
|
73 |
| - <build> |
74 |
| - <plugins> |
75 |
| - <plugin> |
76 |
| - <groupId>org.apache.maven.plugins</groupId> |
77 |
| - <artifactId>maven-compiler-plugin</artifactId> |
78 |
| - <version>3.8.0</version> |
79 |
| - <configuration> |
80 |
| - <source>1.8</source> |
81 |
| - <target>1.8</target> |
82 |
| - </configuration> |
83 |
| - </plugin> |
84 |
| - </plugins> |
85 |
| - </build> |
86 |
| - |
87 | 73 | <profiles>
|
88 | 74 | <profile>
|
89 | 75 | <id>release</id>
|
|
98 | 84 | <plugin>
|
99 | 85 | <groupId>org.sonatype.plugins</groupId>
|
100 | 86 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
101 |
| - <version>1.6.7</version> |
| 87 | + <version>1.7.0</version> |
102 | 88 | <extensions>true</extensions>
|
103 | 89 | <configuration>
|
104 | 90 | <serverId>ossrh</serverId>
|
|
110 | 96 | <plugin>
|
111 | 97 | <groupId>org.apache.maven.plugins</groupId>
|
112 | 98 | <artifactId>maven-source-plugin</artifactId>
|
113 |
| - <version>2.2.1</version> |
| 99 | + <version>3.3.1</version> |
114 | 100 | <executions>
|
115 | 101 | <execution>
|
116 |
| - <id>attach-sources</id> |
117 |
| - <goals> |
118 |
| - <goal>jar-no-fork</goal> |
119 |
| - </goals> |
| 102 | + <id>attach-sources</id> |
| 103 | + <goals> |
| 104 | + <goal>jar-no-fork</goal> |
| 105 | + </goals> |
120 | 106 | </execution>
|
121 | 107 | </executions>
|
122 | 108 | </plugin>
|
123 | 109 |
|
124 | 110 | <plugin>
|
125 | 111 | <groupId>org.apache.maven.plugins</groupId>
|
126 | 112 | <artifactId>maven-javadoc-plugin</artifactId>
|
127 |
| - <version>2.9.1</version> |
| 113 | + <version>3.11.1</version> |
128 | 114 | <executions>
|
129 | 115 | <execution>
|
130 |
| - <id>attach-javadocs</id> |
131 |
| - <goals> |
132 |
| - <goal>jar</goal> |
133 |
| - </goals> |
| 116 | + <id>attach-javadocs</id> |
| 117 | + <goals> |
| 118 | + <goal>jar</goal> |
| 119 | + </goals> |
134 | 120 | </execution>
|
135 | 121 | </executions>
|
136 | 122 | </plugin>
|
137 | 123 |
|
138 | 124 | <plugin>
|
139 | 125 | <groupId>org.apache.maven.plugins</groupId>
|
140 | 126 | <artifactId>maven-gpg-plugin</artifactId>
|
141 |
| - <version>1.5</version> |
| 127 | + <version>3.2.7</version> |
142 | 128 | <executions>
|
143 | 129 | <execution>
|
144 |
| - <id>sign-artifacts</id> |
145 |
| - <phase>verify</phase> |
146 |
| - <goals> |
147 |
| - <goal>sign</goal> |
148 |
| - </goals> |
| 130 | + <id>sign-artifacts</id> |
| 131 | + <phase>verify</phase> |
| 132 | + <goals> |
| 133 | + <goal>sign</goal> |
| 134 | + </goals> |
149 | 135 | </execution>
|
150 | 136 | </executions>
|
151 | 137 | </plugin>
|
152 | 138 |
|
153 | 139 | <plugin>
|
154 | 140 | <groupId>org.apache.maven.plugins</groupId>
|
155 | 141 | <artifactId>maven-release-plugin</artifactId>
|
156 |
| - <version>2.5</version> |
| 142 | + <version>3.1.1</version> |
157 | 143 | <configuration>
|
158 | 144 | <tagNameFormat>@{project.version}</tagNameFormat>
|
159 | 145 | </configuration>
|
|
0 commit comments