|
2 | 2 | <modelVersion>4.0.0</modelVersion> |
3 | 3 | <groupId>com.amazonaws</groupId> |
4 | 4 | <artifactId>amazon-sqs-java-messaging-lib</artifactId> |
5 | | - <version>1.1.3</version> |
| 5 | + <version>1.2.0</version> |
6 | 6 | <name>Amazon SQS Java Messaging Library</name> |
7 | 7 | <description>The Amazon SQS Java Messaging Library holds the Java Message Service compatible classes, that are used |
8 | 8 | for communicating with Amazon Simple Queue Service. |
|
29 | 29 | </developer> |
30 | 30 | </developers> |
31 | 31 | <properties> |
32 | | - <aws-java-sdk.version>1.12.360</aws-java-sdk.version> |
| 32 | + <aws-java-sdk.version>1.12.415</aws-java-sdk.version> |
33 | 33 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
34 | 34 | </properties> |
35 | 35 |
|
|
40 | 40 | <version>${aws-java-sdk.version}</version> |
41 | 41 | </dependency> |
42 | 42 | <dependency> |
43 | | - <groupId>org.apache.geronimo.specs</groupId> |
44 | | - <artifactId>geronimo-jms_1.1_spec</artifactId> |
45 | | - <version>1.1.1</version> |
| 43 | + <groupId>jakarta.jms</groupId> |
| 44 | + <artifactId>jakarta.jms-api</artifactId> |
| 45 | + <version>3.1.0</version> |
46 | 46 | </dependency> |
47 | 47 | <dependency> |
48 | 48 | <groupId>org.junit.jupiter</groupId> |
49 | | - <artifactId>junit-jupiter-engine</artifactId> |
50 | | - <version>5.9.1</version> |
| 49 | + <artifactId>junit-jupiter</artifactId> |
| 50 | + <version>5.9.2</version> |
51 | 51 | <scope>test</scope> |
52 | 52 | </dependency> |
53 | 53 | <dependency> |
|
59 | 59 | <dependency> |
60 | 60 | <groupId>org.mockito</groupId> |
61 | 61 | <artifactId>mockito-core</artifactId> |
62 | | - <version>1.10.8</version> |
| 62 | + <version>5.1.1</version> |
63 | 63 | <scope>test</scope> |
64 | 64 | </dependency> |
| 65 | + <dependency> |
| 66 | + <groupId>org.projectlombok</groupId> |
| 67 | + <artifactId>lombok</artifactId> |
| 68 | + <version>1.18.24</version> |
| 69 | + </dependency> |
65 | 70 | </dependencies> |
66 | 71 |
|
67 | 72 | <build> |
|
72 | 77 | <artifactId>maven-compiler-plugin</artifactId> |
73 | 78 | <version>3.10.1</version> |
74 | 79 | <configuration> |
75 | | - <source>1.7</source> |
76 | | - <target>1.7</target> |
| 80 | + <source>1.8</source> |
| 81 | + <target>1.8</target> |
77 | 82 | <encoding>UTF-8</encoding> |
| 83 | + <annotationProcessorPaths> |
| 84 | + <path> |
| 85 | + <groupId>org.projectlombok</groupId> |
| 86 | + <artifactId>lombok</artifactId> |
| 87 | + <version>1.18.24</version> |
| 88 | + </path> |
| 89 | + </annotationProcessorPaths> |
78 | 90 | </configuration> |
79 | 91 | </plugin> |
80 | 92 | <plugin> |
81 | 93 | <groupId>org.apache.maven.plugins</groupId> |
82 | 94 | <artifactId>maven-failsafe-plugin</artifactId> |
83 | | - <version>3.0.0-M1</version> |
| 95 | + <version>3.0.0-M7</version> |
84 | 96 | <executions> |
85 | 97 | <execution> |
86 | 98 | <goals> |
|
90 | 102 | </execution> |
91 | 103 | </executions> |
92 | 104 | </plugin> |
| 105 | + <plugin> |
| 106 | + <groupId>org.apache.maven.plugins</groupId> |
| 107 | + <artifactId>maven-surefire-plugin</artifactId> |
| 108 | + <version>3.0.0-M7</version> |
| 109 | + </plugin> |
93 | 110 | </plugins> |
94 | 111 | </pluginManagement> |
95 | 112 | <plugins> |
|
109 | 126 | <plugin> |
110 | 127 | <groupId>org.apache.maven.plugins</groupId> |
111 | 128 | <artifactId>maven-javadoc-plugin</artifactId> |
112 | | - <version>2.9.1</version> |
| 129 | + <version>3.4.1</version> |
113 | 130 | <executions> |
114 | 131 | <execution> |
115 | 132 | <id>attach-javadocs</id> |
116 | 133 | <goals> |
117 | 134 | <goal>jar</goal> |
118 | 135 | </goals> |
119 | 136 | <configuration> |
120 | | - <!-- |
121 | | - TODO-RS: Java 8 is more strict about some javadoc tags. |
122 | | - We'll need to update quite a few to remove this workaround. |
123 | | - --> |
124 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 137 | + <doclint>none</doclint> |
125 | 138 | </configuration> |
126 | 139 | </execution> |
127 | 140 | </executions> |
|
137 | 150 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
138 | 151 | </configuration> |
139 | 152 | </plugin> |
| 153 | + <plugin> |
| 154 | + <groupId>org.apache.maven.plugins</groupId> |
| 155 | + <artifactId>maven-compiler-plugin</artifactId> |
| 156 | + <configuration> |
| 157 | + <source>16</source> |
| 158 | + <target>16</target> |
| 159 | + </configuration> |
| 160 | + </plugin> |
140 | 161 | </plugins> |
141 | 162 | </build> |
142 | 163 |
|
|
0 commit comments