Project

General

Profile

Task #2245

Updated by Alena Peterová about 4 years ago

The frontend sources aren't copied to the built JAR now, because the path to their directory is one level higher than it's defined in the copy-fe-resources execution: 
 <pre> 
								 <resource> 
									 <directory>../frontend</directory> 
									 <filtering>false</filtering> 
									 <excludes> 
										 <exclude>**/.*</exclude> 
									 </excludes> 
								 </resource> 
 </pre> 

 FE sources should be included, so we can build the projects that use the Extras module with IdmTool (easier). 

 Currently, the build says: 
 <pre> 
 [INFO] --- maven-resources-plugin:2.6:copy-resources (copy-fe-sources) @ idm-extras --- 
 [INFO] Using 'UTF-8' encoding to copy filtered resources. 
 [INFO] skip non existing resourceDirectory /home/alena/projects/modules/czechidm-extras/Realization/backend/idm-extras/../frontend 
 </pre>

Back