Changeset 582
- Timestamp:
- 08/21/12 14:57:54 (12 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-plugin-core/src/main/java/de/ugoe/cs/quest/plugin/PluginLoader.java
r532 r582 229 229 return false; 230 230 } 231 return filename.startsWith("quest-plugin-") 232 && filename.endsWith(".jar") && filename.split("-").length == 4; 231 return filename.startsWith("quest-plugin-") && !filename.startsWith("quest-plugin-core") 232 && 233 ((filename.split("-").length == 4 && filename.endsWith(".jar")) || 234 filename.split("-").length == 5 && filename.endsWith("SNAPSHOT.jar")); 233 235 } 234 236 -
trunk/quest-runner/pom.xml
r581 r582 37 37 <artifactId>jopt-simple</artifactId> 38 38 <version>4.3</version> 39 </dependency> 40 <dependency> 41 <groupId>de.ugoe.cs.quest</groupId> 42 <artifactId>quest-plugin-guitar</artifactId> 43 <version>0.0.1-SNAPSHOT</version> 44 </dependency> 45 <dependency> 46 <groupId>de.ugoe.cs.quest</groupId> 47 <artifactId>quest-plugin-jfc</artifactId> 48 <version>0.0.1-SNAPSHOT</version> 49 </dependency> 50 <dependency> 51 <groupId>de.ugoe.cs.quest</groupId> 52 <artifactId>quest-plugin-mfc</artifactId> 53 <version>0.0.1-SNAPSHOT</version> 54 </dependency> 55 <dependency> 56 <groupId>de.ugoe.cs.quest</groupId> 57 <artifactId>quest-plugin-php</artifactId> 58 <version>0.0.1-SNAPSHOT</version> 39 59 </dependency> 40 60 </dependencies> … … 132 152 </execution> 133 153 <execution> 134 <id>get-guitar-plugin</id>135 <phase>process-classes</phase>136 <goals>137 <goal>get</goal>138 </goals>139 <configuration>140 <groupId>de.ugoe.cs.quest</groupId>141 <artifactId>quest-plugin-guitar</artifactId>142 <version>0.0.1-SNAPSHOT</version>143 <destination>${project.build.directory}/plugins/quest-plugin-guitar-0.0.1.jar</destination>144 </configuration>145 </execution>146 <execution>147 <id>get-jfc-plugin</id>148 <phase>process-classes</phase>149 <goals>150 <goal>get</goal>151 </goals>152 <configuration>153 <groupId>de.ugoe.cs.quest</groupId>154 <artifactId>quest-plugin-jfc</artifactId>155 <version>0.0.1-SNAPSHOT</version>156 <destination>${project.build.directory}/plugins/quest-plugin-jfc-0.0.1.jar</destination>157 </configuration>158 </execution>159 <execution>160 <id>get-mfc-plugin</id>161 <phase>process-classes</phase>162 <goals>163 <goal>get</goal>164 </goals>165 <configuration>166 <groupId>de.ugoe.cs.quest</groupId>167 <artifactId>quest-plugin-mfc</artifactId>168 <version>0.0.1-SNAPSHOT</version>169 <destination>${project.build.directory}/plugins/quest-plugin-mfc-0.0.1.jar</destination>170 </configuration>171 </execution>172 <execution>173 154 <id>get-mfc-plugin-config</id> 174 155 <phase>process-classes</phase> … … 187 168 </artifactItem> 188 169 </artifactItems> 189 </configuration>190 </execution>191 <execution>192 <id>get-php-plugin</id>193 <phase>process-classes</phase>194 <goals>195 <goal>get</goal>196 </goals>197 <configuration>198 <groupId>de.ugoe.cs.quest</groupId>199 <artifactId>quest-plugin-php</artifactId>200 <version>0.0.1-SNAPSHOT</version>201 <destination>${project.build.directory}/plugins/quest-plugin-php-0.0.1.jar</destination>202 170 </configuration> 203 171 </execution> -
trunk/quest-runner/src/main/assembly/bin.xml
r581 r582 34 34 </includes> 35 35 </fileSet> 36 < fileSet>36 <!-- <fileSet> 37 37 <directory>target/plugins</directory> 38 38 <outputDirectory>plugins</outputDirectory> … … 40 40 <include>*.jar</include> 41 41 </includes> 42 </fileSet> 42 </fileSet>--> 43 43 <fileSet> 44 44 <directory>target/data</directory> -
trunk/quest-runner/src/main/java/de/ugoe/cs/quest/ui/Runner.java
r581 r582 65 65 */ 66 66 67 PluginLoader pluginLoader = new PluginLoader(new File(" plugins"));67 PluginLoader pluginLoader = new PluginLoader(new File("lib")); 68 68 pluginLoader.load(); 69 69
Note: See TracChangeset
for help on using the changeset viewer.