Changeset 98 for autotranslator
- Timestamp:
- 11/02/22 10:52:16 (2 years ago)
- Location:
- autotranslator
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
autotranslator
- Property svn:ignore
-
old new 3 3 target 4 4 .settings 5 downloads
-
- Property svn:ignore
-
autotranslator/pom.xml
r97 r98 6 6 <groupId>geniusweb</groupId> 7 7 <artifactId>python-autotranslator</artifactId> 8 <version> 0.0.1</version>8 <version>2.1.6</version> 9 9 <packaging>jar</packaging> 10 10 … … 17 17 <passwd>${env.ARTIFACTORY_PASS}</passwd> 18 18 <jackson-2-version>2.12.3</jackson-2-version> 19 <j2p.version>1.0.0</j2p.version> 19 20 <geniusweb.version>${project.version}</geniusweb.version> 20 21 </properties> … … 31 32 <dependency> 32 33 <groupId>geniusweb</groupId> 33 <artifactId> party</artifactId>34 <artifactId>issuevalue</artifactId> 34 35 <version>${geniusweb.version}</version> 35 36 </dependency> 36 <dependency> 37 <groupId>geniusweb</groupId> 38 <artifactId>profile</artifactId> 39 <version>${geniusweb.version}</version> 40 </dependency> 41 <dependency> 42 <groupId>geniusweb</groupId> 43 <artifactId>events</artifactId> 44 <version>${geniusweb.version}</version> 45 </dependency> 46 <dependency> 47 <groupId>geniusweb</groupId> 48 <artifactId>timeline</artifactId> 49 <version>${geniusweb.version}</version> 50 </dependency> 51 <dependency> 52 <groupId>geniusweb</groupId> 53 <artifactId>profileconnection</artifactId> 54 <version>${geniusweb.version}</version> 55 </dependency> 56 <dependency> 57 <groupId>geniusweb</groupId> 58 <artifactId>bidspace</artifactId> 59 <version>${geniusweb.version}</version> 60 </dependency> 61 <dependency> 62 <groupId>geniusweb</groupId> 63 <artifactId>opponentmodel</artifactId> 64 <version>${geniusweb.version}</version> 65 </dependency> 66 67 <dependency> 68 <groupId>tudelft.utilities</groupId> 69 <artifactId>logging</artifactId> 70 <version>1.0.1</version> 37 38 39 <dependency> 40 <groupId>tudelft.utilities.j2p</groupId> 41 <artifactId>core</artifactId> 42 <version>${j2p.version}</version> 43 </dependency> 44 <dependency> 45 <groupId>tudelft.utilities.j2p</groupId> 46 <artifactId>jackson-t</artifactId> 47 <version>${j2p.version}</version> 71 48 </dependency> 72 49 … … 96 73 </repository> 97 74 </repositories> 98 75 99 76 <pluginRepositories> 100 77 <pluginRepository> … … 115 92 <plugin> 116 93 <groupId>org.apache.maven.plugins</groupId> 94 <artifactId>maven-dependency-plugin</artifactId> 95 <executions> 96 <execution> 97 <id>unpack</id> 98 <phase>validate</phase> 99 <goals> 100 <goal>unpack</goal> 101 </goals> 102 <configuration> 103 <artifactItems> 104 <artifactItem> 105 <groupId>geniusweb</groupId> 106 <artifactId>issuevalue</artifactId> 107 <version>${geniusweb.version}</version> 108 <type>jar</type> 109 <outputDirectory>downloads</outputDirectory> 110 </artifactItem> 111 </artifactItems> 112 </configuration> 113 </execution> 114 </executions> 115 </plugin> 116 117 118 <plugin> 119 <groupId>org.apache.maven.plugins</groupId> 117 120 <artifactId>maven-compiler-plugin</artifactId> 118 121 <version>3.8.0</version> … … 148 151 </plugin> 149 152 150 <plugin>151 <groupId>org.apache.maven.plugins</groupId>152 <artifactId>maven-javadoc-plugin</artifactId>153 <version>3.2.0</version>154 <executions>155 <execution>156 <id>attach-javadocs</id>157 <goals>158 <goal>jar</goal>159 </goals>160 </execution>161 </executions>162 </plugin>153 <!-- <plugin> --> 154 <!-- <groupId>org.apache.maven.plugins</groupId> --> 155 <!-- <artifactId>maven-javadoc-plugin</artifactId> --> 156 <!-- <version>3.2.0</version> --> 157 <!-- <executions> --> 158 <!-- <execution> --> 159 <!-- <id>attach-javadocs</id> --> 160 <!-- <goals> --> 161 <!-- <goal>jar</goal> --> 162 <!-- </goals> --> 163 <!-- </execution> --> 164 <!-- </executions> --> 165 <!-- </plugin> --> 163 166 164 167 <plugin>
Note:
See TracChangeset
for help on using the changeset viewer.