Skip to content

Commit

Permalink
Leave out eggs,math,wbs resources
Browse files Browse the repository at this point in the history
Signed-off-by: Sjoerd Talsma <sjoerdtalsma@users.noreply.github.com>
  • Loading branch information
sjoerdtalsma committed Oct 24, 2024
1 parent 64fe80a commit 98cf2c1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
3 changes: 3 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,13 @@
<exclude>**/plantuml/bpm/**.*</exclude>
<exclude>**/plantuml/dedication/**.*</exclude>
<exclude>**/plantuml/directdot/**.*</exclude>
<exclude>**/plantuml/eggs/**.*</exclude>
<exclude>**/plantuml/math/**.*</exclude>
<exclude>**/plantuml/mindmap/**.*</exclude>
<exclude>**/plantuml/nwdiag/**.*</exclude>
<exclude>**/plantuml/openiconic/**.*</exclude>
<exclude>**/plantuml/salt/**.*</exclude>
<exclude>**/plantuml/wbs/**.*</exclude>
<exclude>**/plantuml/windowsdot/**.*</exclude>
<exclude>sprites/archimate/**.*</exclude>
<exclude>stdlib/**.*</exclude>
Expand Down
22 changes: 11 additions & 11 deletions src/main/java/net/sourceforge/plantuml/PSystemBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ final public Diagram createPSystem(List<StringLocated> source, List<StringLocate
private static final List<PSystemFactory> factories = new ArrayList<>();

static {
factories.add(new PSystemWelcomeFactory());
factories.add(new PSystemColorsFactory());
// factories.add(new PSystemWelcomeFactory());
// factories.add(new PSystemColorsFactory());
factories.add(new SequenceDiagramFactory());
factories.add(new ClassDiagramFactory());
factories.add(new ActivityDiagramFactory());
Expand Down Expand Up @@ -243,7 +243,7 @@ final public Diagram createPSystem(List<StringLocated> source, List<StringLocate
// factories.add(new NwDiagramFactory(DiagramType.UML));
// factories.add(new NwDiagramFactory(DiagramType.NW));
// factories.add(new MindMapDiagramFactory());
factories.add(new WBSDiagramFactory());
// factories.add(new WBSDiagramFactory());

// ::uncomment when __CORE__
// factories.add(new PSystemSudokuFactory());
Expand All @@ -253,17 +253,17 @@ final public Diagram createPSystem(List<StringLocated> source, List<StringLocate
factories.add(new PSystemDefinitionFactory());
// factories.add(new ListSpriteDiagramFactory());
// factories.add(new StdlibDiagramFactory());
factories.add(new PSystemMathFactory(DiagramType.MATH));
factories.add(new PSystemLatexFactory(DiagramType.LATEX));
// factories.add(new PSystemMathFactory(DiagramType.MATH));
// factories.add(new PSystemLatexFactory(DiagramType.LATEX));
// factories.add(new PSystemCreoleFactory());
factories.add(new PSystemEggFactory());
factories.add(new PSystemAppleTwoFactory());
factories.add(new PSystemRIPFactory());
if (SecurityUtils.getSecurityProfile() == SecurityProfile.UNSECURE)
factories.add(new PSystemPathFactory());
// factories.add(new PSystemEggFactory());
// factories.add(new PSystemAppleTwoFactory());
// factories.add(new PSystemRIPFactory());
// if (SecurityUtils.getSecurityProfile() == SecurityProfile.UNSECURE)
// factories.add(new PSystemPathFactory());
factories.add(new PSystemOregonFactory());

factories.add(new PSystemCharlieFactory());
// factories.add(new PSystemCharlieFactory());

factories.add(new GanttDiagramFactory());
factories.add(new ChronologyDiagramFactory());
Expand Down

0 comments on commit 98cf2c1

Please sign in to comment.