|
4 | 4 |
|
5 | 5 | <groupId>com.cajuncoding</groupId> |
6 | 6 | <artifactId>apachefop-serverless-az-func</artifactId> |
7 | | - <version>1.4-SNAPSHOT</version> |
| 7 | + <version>1.5-SNAPSHOT</version> |
8 | 8 | <packaging>jar</packaging> |
9 | 9 |
|
10 | 10 | <name>Azure Java Functions</name> |
11 | 11 |
|
12 | 12 | <properties> |
13 | 13 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
14 | | - <java.version>11</java.version> |
| 14 | + <java.version>21</java.version> |
15 | 15 | <functionAppName>apachefop-serverless-az-func</functionAppName> |
16 | 16 | <stagingDirectory>${project.build.directory}/azure-functions/${functionAppName}</stagingDirectory> |
17 | 17 | <!-- <functionAppRegion>westus</functionAppRegion> --> |
|
21 | 21 | <dependency> |
22 | 22 | <groupId>com.microsoft.azure.functions</groupId> |
23 | 23 | <artifactId>azure-functions-java-library</artifactId> |
24 | | - <version>1.4.2</version> |
| 24 | + <version>3.1.0</version> |
25 | 25 | </dependency> |
26 | 26 | <dependency> |
27 | 27 | <groupId>org.apache.xmlgraphics</groupId> |
28 | 28 | <artifactId>fop</artifactId> |
29 | | - <version>2.6</version> |
| 29 | + <version>2.11</version> |
30 | 30 | <!-- We MUST explicitly exclude these to ensure VS Code can correctly compile. |
31 | 31 | NOTE: This is because they are referenced in from multiple libraries and while |
32 | | - Maven (via IntelliJ) resolves it, VS Code Java Extensions will fail to compile --> |
| 32 | + Maven (via IntelliJ) resolves it, VS Code Java Extensions will fail to compile --> |
33 | 33 | <exclusions> |
34 | 34 | <exclusion> |
35 | 35 | <groupId>xml-apis</groupId> |
|
44 | 44 | <dependency> |
45 | 45 | <groupId>org.apache.commons</groupId> |
46 | 46 | <artifactId>commons-lang3</artifactId> |
47 | | - <version>3.12.0</version> |
| 47 | + <version>3.17.0</version> |
48 | 48 | </dependency> |
49 | 49 | <dependency> |
50 | 50 | <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-text --> |
51 | 51 | <groupId>org.apache.commons</groupId> |
52 | 52 | <artifactId>commons-text</artifactId> |
53 | | - <version>1.10.0</version> |
| 53 | + <version>1.13.1</version> |
54 | 54 | </dependency> |
55 | 55 | <dependency> |
56 | 56 | <groupId>commons-io</groupId> |
57 | 57 | <artifactId>commons-io</artifactId> |
58 | | - <version>2.8.0</version> |
| 58 | + <version>2.19.0</version> |
59 | 59 | </dependency> |
60 | 60 |
|
61 | 61 | <!-- Test --> |
62 | 62 | <dependency> |
63 | 63 | <groupId>org.junit.jupiter</groupId> |
64 | 64 | <artifactId>junit-jupiter</artifactId> |
65 | | - <version>5.7.1</version> |
| 65 | + <version>5.13.0-RC1</version> |
66 | 66 | <scope>test</scope> |
67 | 67 | </dependency> |
68 | 68 | <dependency> |
69 | 69 | <groupId>org.mockito</groupId> |
70 | 70 | <artifactId>mockito-core</artifactId> |
71 | | - <version>3.8.0</version> |
| 71 | + <version>5.18.0</version> |
72 | 72 | <scope>test</scope> |
73 | 73 | </dependency> |
74 | 74 | </dependencies> |
|
78 | 78 | <plugin> |
79 | 79 | <groupId>com.microsoft.azure</groupId> |
80 | 80 | <artifactId>azure-functions-maven-plugin</artifactId> |
81 | | - <version>1.14.0</version> |
| 81 | + <version>1.38.0</version> |
82 | 82 | <configuration> |
83 | 83 | <!-- The App Name & Resource Group Name must both be Unique or deployment issues may arise |
84 | 84 | as NOTED here: https://github.com/Azure/azure-functions-java-worker/issues/140 --> |
|
104 | 104 | <appSettings> |
105 | 105 | <property> |
106 | 106 | <name>FUNCTIONS_EXTENSION_VERSION</name> |
107 | | - <value>~3</value> |
| 107 | + <value>~4</value> |
108 | 108 | </property> |
109 | 109 | </appSettings> |
110 | 110 | </configuration> |
|
121 | 121 | <!-- Plugin for Debugging Property Values --> |
122 | 122 | <groupId>org.apache.maven.plugins</groupId> |
123 | 123 | <artifactId>maven-antrun-plugin</artifactId> |
124 | | - <version>1.7</version> |
| 124 | + <version>3.1.0</version> |
125 | 125 | <executions> |
126 | 126 | <execution> |
127 | 127 | <?m2e execute onConfiguration,onIncremental?> |
|
141 | 141 | <plugin> |
142 | 142 | <groupId>org.apache.maven.plugins</groupId> |
143 | 143 | <artifactId>maven-clean-plugin</artifactId> |
144 | | - <version>3.1.0</version> |
| 144 | + <version>3.4.1</version> |
145 | 145 | <configuration> |
146 | 146 | <filesets> |
147 | 147 | <fileset> |
|
163 | 163 | <plugin> |
164 | 164 | <groupId>org.apache.maven.plugins</groupId> |
165 | 165 | <artifactId>maven-compiler-plugin</artifactId> |
166 | | - <version>3.8.1</version> |
| 166 | + <version>3.14.0</version> |
167 | 167 | <configuration> |
168 | 168 | <source>${java.version}</source> |
169 | 169 | <target>${java.version}</target> |
|
173 | 173 | <plugin> |
174 | 174 | <groupId>org.apache.maven.plugins</groupId> |
175 | 175 | <artifactId>maven-resources-plugin</artifactId> |
176 | | - <version>3.2.0</version> |
| 176 | + <version>3.3.1</version> |
177 | 177 | <executions> |
178 | 178 | <!-- COPY Azure Function configuration JSON Files (required especially for running locally)! --> |
179 | 179 | <execution> |
|
201 | 201 | <plugin> |
202 | 202 | <groupId>org.apache.maven.plugins</groupId> |
203 | 203 | <artifactId>maven-dependency-plugin</artifactId> |
204 | | - <version>3.1.2</version> |
| 204 | + <version>3.8.1</version> |
205 | 205 | <executions> |
206 | 206 | <execution> |
207 | 207 | <id>copy-dependencies</id> |
|
223 | 223 | <plugin> |
224 | 224 | <groupId>org.apache.maven.plugins</groupId> |
225 | 225 | <artifactId>maven-surefire-plugin</artifactId> |
226 | | - <version>2.22.1</version> |
| 226 | + <version>3.5.3</version> |
227 | 227 | <configuration> |
228 | 228 | <skipTests>true</skipTests> |
229 | 229 | </configuration> |
|
0 commit comments