This page (revision-90) was last changed on 24-Feb-2016 11:06 by Albrecht Striffler

This page was created on 20-Nov-2012 15:45 by UnknownAuthor

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
90 24-Feb-2016 11:06 9 KB Albrecht Striffler to previous
89 15-May-2014 09:33 9 KB Volker Belli to previous | to last
88 15-May-2014 09:32 9 KB Volker Belli to previous | to last
87 15-May-2014 09:30 9 KB Volker Belli to previous | to last
86 21-Jun-2013 15:09 8 KB Jochen Reutelshöfer to previous | to last
85 21-Jun-2013 15:08 8 KB Jochen Reutelshöfer to previous | to last
84 21-Dec-2012 16:15 7 KB Jochen Reutelshöfer to previous | to last
83 21-Dec-2012 16:14 7 KB Jochen Reutelshöfer to previous | to last
82 18-Dec-2012 17:47 7 KB Alex Legler to previous | to last Fix Image link URL
81 17-Dec-2012 21:33 7 KB CarstenWasner to previous | to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 1 added 91 lines
///OLD
!!! FAQ
[{TableOfContents }]
!!Creating new projects
Every new project has to be allocated to one of the three main repositories: __d3web-core, d3web-KnowWE or Research.__
!Creating the project in Eclipse
* Do a right click on the main project (one of the three projects mentioned above) → New → Other…. In the window, select "Maven Module"
* Check the checkbox called "Skip Archetype selection", give the project a name and hit Next.
* Enter a human-readable name into the field "Name", fill in "Description" as needed.
* Click "Finish".
Now you will see the new project in the Eclipse Project Explorer. Now you can start creating or copying source files. Using the __UTF-8 encoding__ is __mandatory.__
! License header
Every {{.java}} file __must__ contain the license header, starting in the first line. Be sure to have an empty line between the license and the {{package}} declaration.
The license is to look like this:
{{{
/*
* Copyright (C) 2010 Chair of Artificial Intelligence and Applied Informatics
* Computer Science VI, University of Wuerzburg
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 3 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
}}}
!First check-in
You have to perform the first check-in using the chosen main repository (c.f. above).
* Right click the main project → Team → Commit.
* Now __exclude the folders {{target/}} and {{.settings/}}__! (Uncheck the check boxes)
* Enter your commit message → Commit.
Now you can enable SVN access directly for your newly created project: Perform a right click on the new project → Team → Share.
Select SVN, you will find the repository location already set up. Hit Finish.
To complete the process, you have to ignore {{target/}} and {{.settings}} permanently. Select both folders in the Project Explorer with Ctrl/Command, right click → Team → Add to svn:ignore. Click OK in the window that opens.
Finally, commit the ignore settings: right click → Team → Commit. Done.
!!Selecting plugins to build
[{Image src='FAQ/m2eclipse-plugins.png' width='232' height='202' align='right' link='http://d3webwiki.informatik.uni-wuerzburg.de/attach/FAQ/m2eclipse-plugins.png'}]
You need to enable the plug-ins you want to build into KnowWE when using Eclipse. Here's how:
Open your Run Configuration for the KnowWE build and add parameters for the plug-ins you want to have.
For instance: You want to enable the Comment plug-in. Here, you have to add a {{comment-plugin}} parameter. You can set it to an arbitrary value ('true' for instance).
See the screenshot on the right for another example.
!!Eclipse does not catch breakpoints
Update your JDK to at least Version 6, Update 17.
<tags>workspace problems FAQ </tags>
!!java.util.MissingResourceException: Can't find bundle for base name...
Happens after cleaning the workspace.
Solution: For each of the two maven super projects (d3web, d3web-KnowWE), select the project, right click on it, "Run as...", "Maven package".
!!Offline Build (if Artifactory is not available or you have no Internet connection)
Create a second runtime configuration for building KnowWE, just like shown here: [http://d3webwiki.informatik.uni-wuerzburg.de/Wiki.jsp?page=Workspace#section-Workspace-CreateARunConfigurationForBuildingTheWiki], just check the "Offline" checkbox. __Note__: Do not enable this option for your regular build, only use it if Artifactory is down or you are not connected to the internet!
!! Problems with Umlauts
Tomcat can be configured in UTF-8 to handle Umlauts correctlty. Look at [http://www.jspwiki.org/wiki/BugProblemsWithGermanUmlaute]
//End Old