Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GoikLectures
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Goik Martin
GoikLectures
Commits
fbe8e078
Commit
fbe8e078
authored
10 years ago
by
Goik Martin
Browse files
Options
Downloads
Patches
Plain Diff
iNew subprojects
parent
935724a2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Sd1/Makefile
+6
-4
6 additions, 4 deletions
Sd1/Makefile
Sd1/P/loop/answer/pom.xml
+57
-0
57 additions, 0 deletions
Sd1/P/loop/answer/pom.xml
Sd1/P/loop/question/pom.xml
+56
-0
56 additions, 0 deletions
Sd1/P/loop/question/pom.xml
with
119 additions
and
4 deletions
Sd1/Makefile
+
6
−
4
View file @
fbe8e078
...
...
@@ -7,11 +7,10 @@ PPARAM=\
-p
eclipse.plugin.name Swd1
\
-p
eclipse.plugin.provider
'Martin Goik, goik@hdm-stuttgart.de'
JAVAPROJECTS
=
P/fraction/V1 P/interest/V1 P/interest/V2 P/crab/V1 P/crab/V2
JAVAPROJECTS
=
P/fraction/V1 P/interest/V1 P/interest/V2 P/crab/V1 P/crab/V2
P/loop/question P/loop/answer
BUILDROOT
=
/tmp
#--no changes below this line------------------------------
BUILDBASE
=
$(
BUILDROOT
)
/
$(
SCRIPTBASENAME
)
BUILDNAVI
=
$(
BUILDBASE
)
/navi/
$(
PLUGINID
)
...
...
@@ -19,8 +18,7 @@ BUILDNONAVI=$(BUILDBASE)/nonavi/$(PLUGINID)
all
::
${BUILDNAVI}/index.html ${BUILDNAVI}/printversion.pdf
jdoc
:
jdoc1 jdoc2 jdoc3 jdoc4 jdoc5
jdoc
:
jdoc1 jdoc2 jdoc3 jdoc4 jdoc5 jdoc6 jdoc7
jdoc1
:
cd
P/fraction/V1
;
mvn javadoc:javadoc
\"
-DjavadocDestdir
=
${
BUILDNAVI
}
/Ref/api/P/fraction/V1
...
...
@@ -37,7 +35,11 @@ jdoc4:
jdoc5
:
cd
P/crab/V2
;
mvn javadoc:javadoc
\"
-DjavadocDestdir
=
${
BUILDNAVI
}
/Ref/api/P/crab/V2
jdoc6
:
cd
P/loop/question
;
mvn javadoc:javadoc
\"
-DjavadocDestdir
=
${
BUILDNAVI
}
/Ref/api/P/loop/question
jdoc7
:
cd
P/loop/answer
;
mvn javadoc:javadoc
\"
-DjavadocDestdir
=
${
BUILDNAVI
}
/Ref/api/P/loop/answer
#jdoc:
# $(foreach prj,$(JAVAPROJECTS),(cd $(prj);mvn javadoc:javadoc \"-DjavadocDestdir=${BUILDNAVI}/Ref/api/$(prj)\");)
...
...
This diff is collapsed.
Click to expand it.
Sd1/P/loop/answer/pom.xml
0 → 100644
+
57
−
0
View file @
fbe8e078
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
de.hdm-stuttgart.de.sd1
</groupId>
<artifactId>
loop
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
<packaging>
jar
</packaging>
<name>
loop
</name>
<url>
http://maven.apache.org
</url>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<javadocDestdir>
~/tmp
</javadocDestdir>
</properties>
<build>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
2.3.2
</version>
<configuration>
<source>
1.8
</source>
<target>
1.8
</target>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-javadoc-plugin
</artifactId>
<version>
2.9.1
</version>
<configuration>
<linksource>
true
</linksource>
<links>
<link>
http://www.greenfoot.org/files/javadoc/
</link>
</links>
<!-- Setting destDir interferes with taglet class -->
<additionalJOptions>
<additionalJOption>
-d ${javadocDestdir}
</additionalJOption>
</additionalJOptions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
3.8.1
</version>
<scope>
test
</scope>
</dependency>
</dependencies>
</project>
This diff is collapsed.
Click to expand it.
Sd1/P/loop/question/pom.xml
0 → 100644
+
56
−
0
View file @
fbe8e078
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
de.hdm-stuttgart.de.sd1
</groupId>
<artifactId>
loop
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
<packaging>
jar
</packaging>
<name>
loop
</name>
<url>
http://maven.apache.org
</url>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<javadocDestdir>
~/tmp
</javadocDestdir>
</properties>
<build>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
2.3.2
</version>
<configuration>
<source>
1.8
</source>
<target>
1.8
</target>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-javadoc-plugin
</artifactId>
<version>
2.9.1
</version>
<configuration>
<linksource>
true
</linksource>
<links>
<link>
http://www.greenfoot.org/files/javadoc/
</link>
</links>
<!-- Setting destDir interferes with taglet class -->
<additionalJOptions>
<additionalJOption>
-d ${javadocDestdir}
</additionalJOption>
</additionalJOptions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
3.8.1
</version>
<scope>
test
</scope>
</dependency>
</dependencies>
</project>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment