jdk
170 строк · 6.9 Кб
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3Copyright (c) 2021, 2022, Oracle and/or its affiliates. All rights reserved.
4
5Redistribution and use in source and binary forms, with or without
6modification, are permitted provided that the following conditions
7are met:
8
9- Redistributions of source code must retain the above copyright
10notice, this list of conditions and the following disclaimer.
11
12- Redistributions in binary form must reproduce the above copyright
13notice, this list of conditions and the following disclaimer in the
14documentation and/or other materials provided with the distribution.
15
16- Neither the name of Oracle nor the names of its
17contributors may be used to endorse or promote products derived
18from this software without specific prior written permission.
19
20THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
21IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
24CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31-->
32
33<project xmlns="http://maven.apache.org/POM/4.0.0"34xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"35xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">36<modelVersion>4.0.0</modelVersion>37<parent>38<artifactId>IdealGraphVisualizer-parent</artifactId>39<groupId>com.sun.hotspot.igv</groupId>40<version>1.0-SNAPSHOT</version>41</parent>42<artifactId>Coordinator</artifactId>43<version>1.0-SNAPSHOT</version>44<packaging>nbm</packaging>45<name>Coordinator</name>46<properties>47<maven.compiler.release>17</maven.compiler.release>48<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>49</properties>50<dependencies>51<dependency>52<groupId>com.sun.hotspot.igv</groupId>53<artifactId>NetworkConnection</artifactId>54<version>${project.version}</version>55</dependency>56<dependency>57<groupId>com.sun.hotspot.igv</groupId>58<artifactId>Data</artifactId>59<version>${project.version}</version>60</dependency>61<dependency>62<groupId>com.sun.hotspot.igv</groupId>63<artifactId>Difference</artifactId>64<version>${project.version}</version>65</dependency>66<dependency>67<groupId>com.sun.hotspot.igv</groupId>68<artifactId>Settings</artifactId>69<version>${project.version}</version>70</dependency>71<dependency>72<groupId>com.sun.hotspot.igv</groupId>73<artifactId>Util</artifactId>74<version>${project.version}</version>75</dependency>76<dependency>77<groupId>com.sun.hotspot.igv</groupId>78<artifactId>View</artifactId>79<version>${project.version}</version>80</dependency>81<dependency>82<groupId>org.netbeans.api</groupId>83<artifactId>org-openide-util</artifactId>84<version>${netbeans.version}</version>85</dependency>86<dependency>87<groupId>org.netbeans.api</groupId>88<artifactId>org-openide-util-lookup</artifactId>89<version>${netbeans.version}</version>90</dependency>91<dependency>92<groupId>org.netbeans.api</groupId>93<artifactId>org-openide-modules</artifactId>94<version>${netbeans.version}</version>95</dependency>96<dependency>97<groupId>org.netbeans.api</groupId>98<artifactId>org-openide-util-ui</artifactId>99<version>${netbeans.version}</version>100</dependency>101<dependency>102<groupId>org.netbeans.api</groupId>103<artifactId>org-netbeans-api-progress</artifactId>104<version>${netbeans.version}</version>105</dependency>106<dependency>107<groupId>org.netbeans.api</groupId>108<artifactId>org-netbeans-api-progress-nb</artifactId>109<version>${netbeans.version}</version>110</dependency>111<dependency>112<groupId>org.netbeans.api</groupId>113<artifactId>org-openide-explorer</artifactId>114<version>${netbeans.version}</version>115</dependency>116<dependency>117<groupId>org.netbeans.api</groupId>118<artifactId>org-openide-loaders</artifactId>119<version>${netbeans.version}</version>120</dependency>121<dependency>122<groupId>org.netbeans.api</groupId>123<artifactId>org-openide-windows</artifactId>124<version>${netbeans.version}</version>125</dependency>126<dependency>127<groupId>org.netbeans.api</groupId>128<artifactId>org-openide-actions</artifactId>129<version>${netbeans.version}</version>130</dependency>131<dependency>132<groupId>org.netbeans.api</groupId>133<artifactId>org-openide-nodes</artifactId>134<version>${netbeans.version}</version>135</dependency>136</dependencies>137<build>138<plugins>139<plugin>140<groupId>org.codehaus.mojo</groupId>141<artifactId>nbm-maven-plugin</artifactId>142<version>${nbmmvnplugin.version}</version>143<extensions>true</extensions>144</plugin>145<plugin>146<groupId>org.apache.maven.plugins</groupId>147<artifactId>maven-compiler-plugin</artifactId>148<version>${mvncompilerplugin.version}</version>149<configuration>150<release>17</release>151</configuration>152</plugin>153<plugin>154<groupId>org.apache.maven.plugins</groupId>155<artifactId>maven-jar-plugin</artifactId>156<version>${mvnjarplugin.version}</version>157<configuration>158<!-- to have the jar plugin pickup the nbm generated manifest -->159<archive>160<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>161</archive>162</configuration>163</plugin>164<plugin>165<groupId>org.apache.maven.plugins</groupId>166<artifactId>maven-enforcer-plugin</artifactId>167</plugin>168</plugins>169</build>170</project>171