|
| 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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <parent> |
| 6 | + <groupId>org.scijava</groupId> |
| 7 | + <artifactId>pom-scijava</artifactId> |
| 8 | + <version>43.0.0</version> |
| 9 | + <relativePath /> |
| 10 | + </parent> |
| 11 | + |
| 12 | + <artifactId>scripting-appose-python</artifactId> |
| 13 | + <version>0.4.3-SNAPSHOT</version> |
| 14 | + |
| 15 | + <name>SciJava Scripting: Python</name> |
| 16 | + <description>Python scripting language plugin to be used via scyjava.</description> |
| 17 | + <url>https://github.com/scijava/scripting-appose-python</url> |
| 18 | + <inceptionYear>2021</inceptionYear> |
| 19 | + <organization> |
| 20 | + <name>SciJava</name> |
| 21 | + <url>https://scijava.org/</url> |
| 22 | + </organization> |
| 23 | + <licenses> |
| 24 | + <license> |
| 25 | + <name>Simplified BSD License</name> |
| 26 | + <distribution>repo</distribution> |
| 27 | + </license> |
| 28 | + </licenses> |
| 29 | + |
| 30 | + <developers> |
| 31 | + <developer> |
| 32 | + <id>ctrueden</id> |
| 33 | + <name>Curtis Rueden</name> |
| 34 | + <url>https://imagej.net/people/ctrueden</url> |
| 35 | + <roles> |
| 36 | + <role>founder</role> |
| 37 | + <role>lead</role> |
| 38 | + <role>developer</role> |
| 39 | + <role>debugger</role> |
| 40 | + <role>reviewer</role> |
| 41 | + <role>support</role> |
| 42 | + <role>maintainer</role> |
| 43 | + </roles> |
| 44 | + </developer> |
| 45 | + </developers> |
| 46 | + <contributors> |
| 47 | + <contributor> |
| 48 | + <!-- |
| 49 | + NB: Need at least one element to override the parent. |
| 50 | + See: https://issues.apache.org/jira/browse/MNG-5220 |
| 51 | + --> |
| 52 | + <name>None</name> |
| 53 | + </contributor> |
| 54 | + </contributors> |
| 55 | + |
| 56 | + <mailingLists> |
| 57 | + <mailingList> |
| 58 | + <name>SciJava</name> |
| 59 | + <subscribe>https://groups.google.com/group/scijava</subscribe> |
| 60 | + <unsubscribe>https://groups.google.com/group/scijava</unsubscribe> |
| 61 | + <post>scijava@googlegroups.com</post> |
| 62 | + <archive>https://groups.google.com/group/scijava</archive> |
| 63 | + </mailingList> |
| 64 | + </mailingLists> |
| 65 | + |
| 66 | + <scm> |
| 67 | + <connection>scm:git:https://github.com/scijava/scripting-appose-python</connection> |
| 68 | + <developerConnection>scm:git:git@github.com:scijava/scripting-appose-python</developerConnection> |
| 69 | + <tag>HEAD</tag> |
| 70 | + <url>https://github.com/scijava/scripting-appose-python</url> |
| 71 | + </scm> |
| 72 | + <issueManagement> |
| 73 | + <system>GitHub Issues</system> |
| 74 | + <url>https://github.com/scijava/scripting-appose-python/issues</url> |
| 75 | + </issueManagement> |
| 76 | + <ciManagement> |
| 77 | + <system>GitHub Actions</system> |
| 78 | + <url>https://github.com/scijava/scripting-appose-python/actions</url> |
| 79 | + </ciManagement> |
| 80 | + |
| 81 | + <properties> |
| 82 | + <package-name>org.scijava.plugins.scripting.appose.python</package-name> |
| 83 | + <main-class>org.scijava.plugins.scripting.appose.python.Main</main-class> |
| 84 | + |
| 85 | + <license.licenseName>bsd_2</license.licenseName> |
| 86 | + <license.copyrightOwners>SciJava developers.</license.copyrightOwners> |
| 87 | + <license.excludes>**/script_templates/**</license.excludes> |
| 88 | + |
| 89 | + <!-- NB: Deploy releases to the SciJava Maven repository. --> |
| 90 | + <releaseProfiles>sign,deploy-to-scijava</releaseProfiles> |
| 91 | + |
| 92 | + <appose.version>0.10.0</appose.version> |
| 93 | + </properties> |
| 94 | + |
| 95 | + <dependencies> |
| 96 | + <!-- SciJava dependencies --> |
| 97 | + <dependency> |
| 98 | + <groupId>org.scijava</groupId> |
| 99 | + <artifactId>scijava-common</artifactId> |
| 100 | + </dependency> |
| 101 | + <dependency> |
| 102 | + <groupId>org.scijava</groupId> |
| 103 | + <artifactId>script-editor</artifactId> |
| 104 | + </dependency> |
| 105 | + |
| 106 | + <!-- Third-party dependencies --> |
| 107 | + <dependency> |
| 108 | + <groupId>com.fifesoft</groupId> |
| 109 | + <artifactId>rsyntaxtextarea</artifactId> |
| 110 | + </dependency> |
| 111 | + <dependency> |
| 112 | + <groupId>org.apposed</groupId> |
| 113 | + <artifactId>appose</artifactId> |
| 114 | + <version>${appose.version}</version> |
| 115 | + </dependency> |
| 116 | + |
| 117 | + <!-- Test dependencies --> |
| 118 | + <dependency> |
| 119 | + <groupId>junit</groupId> |
| 120 | + <artifactId>junit</artifactId> |
| 121 | + <scope>test</scope> |
| 122 | + </dependency> |
| 123 | + <dependency> |
| 124 | + <groupId>org.scijava</groupId> |
| 125 | + <artifactId>scijava-common</artifactId> |
| 126 | + <classifier>tests</classifier> |
| 127 | + <scope>test</scope> |
| 128 | + </dependency> |
| 129 | + </dependencies> |
| 130 | + |
| 131 | + <repositories> |
| 132 | + <repository> |
| 133 | + <id>scijava.public</id> |
| 134 | + <url>https://maven.scijava.org/content/groups/public</url> |
| 135 | + </repository> |
| 136 | + </repositories> |
| 137 | +</project> |
0 commit comments