< prev index next >

core/org.openjdk.jmc.common/pom.xml

Print this page


   1 <?xml version="1.0" encoding="UTF-8"?>
   2 <!--   
   3    Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
   4    
   5    DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   6    
   7    The contents of this file are subject to the terms of either the Universal Permissive License 
   8    v 1.0 as shown at http://oss.oracle.com/licenses/upl
   9    
  10    or the following license:
  11    
  12    Redistribution and use in source and binary forms, with or without modification, are permitted
  13    provided that the following conditions are met:
  14    
  15    1. Redistributions of source code must retain the above copyright notice, this list of conditions
  16    and the following disclaimer.
  17    
  18    2. Redistributions in binary form must reproduce the above copyright notice, this list of
  19    conditions and the following disclaimer in the documentation and/or other materials provided with
  20    the distribution.
  21    
  22    3. Neither the name of the copyright holder nor the names of its contributors may be used to
  23    endorse or promote products derived from this software without specific prior written permission.
  24    
  25    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
  26    IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  27    FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
  28    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  30    DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  31    WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
  32    WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  33 -->
  34 <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">
  35         <modelVersion>4.0.0</modelVersion>
  36         <parent>
  37                 <groupId>org.openjdk.jmc</groupId>
  38                 <artifactId>missioncontrol.core</artifactId>
  39                 <version>7.0.0-SNAPSHOT</version>
  40         </parent>
  41         <artifactId>org.openjdk.jmc.common</artifactId>
  42         <packaging>eclipse-plugin</packaging>







  43         <build>
  44                 <plugins>
  45                         <plugin>
  46                                 <groupId>org.sonatype.plugins</groupId>
  47                                 <artifactId>nexus-staging-maven-plugin</artifactId>
  48                                 <version>1.6.8</version>
  49                                 <extensions>true</extensions>
  50                                 <configuration>
  51                                         <serverId>jmc-publish-snapshot</serverId>
  52                                         <autoReleaseAfterClose>true</autoReleaseAfterClose>
















  53                                 </configuration>
  54                         </plugin>
  55                         <plugin>
  56                                 <groupId>org.apache.maven.plugins</groupId>
  57                                 <artifactId>maven-gpg-plugin</artifactId>
  58                                 <version>1.6</version>
  59                                 <executions>
  60                                         <execution>
  61                                         <id>gpg-sign</id>
  62                                         <phase>deploy</phase>
  63                                         <goals>
  64                                                 <goal>sign</goal>
  65                                         </goals>
  66                                         </execution>
  67                                 </executions>
  68                         </plugin>
  69                 </plugins>
  70         </build>
  71 </project>
   1 <?xml version="1.0" encoding="UTF-8"?>
   2 <!-- Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. 
   3         DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. The contents 
   4         of this file are subject to the terms of either the Universal Permissive 
   5         License v 1.0 as shown at http://oss.oracle.com/licenses/upl or the following 
   6         license: Redistribution and use in source and binary forms, with or without 
   7         modification, are permitted provided that the following conditions are met: 
   8         1. Redistributions of source code must retain the above copyright notice, 
   9         this list of conditions and the following disclaimer. 2. Redistributions 
  10         in binary form must reproduce the above copyright notice, this list of conditions 
  11         and the following disclaimer in the documentation and/or other materials 
  12         provided with the distribution. 3. Neither the name of the copyright holder 
  13         nor the names of its contributors may be used to endorse or promote products 
  14         derived from this software without specific prior written permission. THIS 
  15         SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
  16         ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
  17         WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
  18         IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY 
  19         DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 
  20         (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 
  21         LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 
  22         ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
  23         (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 
  24         THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -->
  25 <project xmlns="http://maven.apache.org/POM/4.0.0"
  26         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  27         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">







  28         <modelVersion>4.0.0</modelVersion>
  29         <parent>
  30                 <groupId>org.openjdk.jmc</groupId>
  31                 <artifactId>missioncontrol.core</artifactId>
  32                 <version>7.0.0-SNAPSHOT</version>
  33         </parent>
  34         <artifactId>common</artifactId>
  35         <packaging>jar</packaging>
  36         <dependencies>
  37                 <dependency>
  38                         <groupId>org.codehaus.plexus</groupId>
  39                         <artifactId>plexus-utils</artifactId>
  40                 </dependency>
  41         </dependencies>
  42 
  43         <build>
  44                 <plugins>
  45                         <plugin>
  46                                 <groupId>org.apache.felix</groupId>
  47                                 <artifactId>maven-bundle-plugin</artifactId>

  48                                 <extensions>true</extensions>
  49                                 <configuration>
  50                                         <instructions>
  51                                                 <Manifest-Version>1.0</Manifest-Version>
  52                                                 <Bundle-RequiredExecutionEnvironment> JavaSE-1.7</Bundle-RequiredExecutionEnvironment>
  53                                                 <Bundle-Name>JMC Common Plug-in</Bundle-Name>
  54                                                 <Bundle-SymbolicName>${project.groupId}.${project.artifactId};singleton:=true</Bundle-SymbolicName>
  55                                                 <Bundle-Version>${project.version}</Bundle-Version>
  56                                                 <Bundle-Vendor>Oracle Corporation</Bundle-Vendor>
  57                                                 <Export-Package>
  58                                                         org.openjdk.jmc.common,
  59                                                         org.openjdk.jmc.common.collection,
  60                                                         org.openjdk.jmc.common.io,
  61                                                         org.openjdk.jmc.common.item,
  62                                                         org.openjdk.jmc.common.unit,
  63                                                         org.openjdk.jmc.common.util,
  64                                                         org.openjdk.jmc.common.version
  65                                                 </Export-Package>
  66                                                 <Automatic-Module-Name>org.openjdk.jmc.common</Automatic-Module-Name>
  67                                         </instructions>
  68                                 </configuration>
  69                                 <!-- <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> 
  70                                         <goals> <goal>manifest</goal> </goals> </execution> </executions> -->












  71                         </plugin>
  72                 </plugins>
  73         </build>
  74 </project>
< prev index next >