Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
biopet.biopet
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirrors
biopet.biopet
Commits
03aa6466
Commit
03aa6466
authored
9 years ago
by
Peter van 't Hof
Browse files
Options
Downloads
Patches
Plain Diff
added scripts to copy sources
parent
14fa14d5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
biopet-aggregate/copy-src.sh
+6
-0
6 additions, 0 deletions
biopet-aggregate/copy-src.sh
biopet-aggregate/rm-src.sh
+6
-0
6 additions, 0 deletions
biopet-aggregate/rm-src.sh
public/pom.xml
+13
-1
13 additions, 1 deletion
public/pom.xml
with
25 additions
and
1 deletion
biopet-aggregate/copy-src.sh
0 → 100755
+
6
−
0
View file @
03aa6466
#!/bin/bash
DIR
=
`
readlink
-f
\`
dirname
$0
\`
`
cp
-r
$DIR
/../
*
/
*
/src/
*
$DIR
/src
This diff is collapsed.
Click to expand it.
biopet-aggregate/rm-src.sh
0 → 100755
+
6
−
0
View file @
03aa6466
#!/bin/bash
DIR
=
`
readlink
-f
\`
dirname
$0
\`
`
rm
-r
$DIR
/src/main
$DIR
/src/test
This diff is collapsed.
Click to expand it.
public/pom.xml
+
13
−
1
View file @
03aa6466
...
...
@@ -246,9 +246,10 @@
<configuration>
<scalaVersion>
${scalaVersion}
</scalaVersion>
<aggregate>
true
</aggregate>
<highlighting>
true
</highlighting>
<!-- other parameters -->
</configuration>
</plugin>
</plugin>
</plugins>
</build>
<reporting>
...
...
@@ -257,6 +258,17 @@
<groupId>
org.scoverage
</groupId>
<artifactId>
scoverage-maven-plugin
</artifactId>
<version>
${scoverage.plugin.version}
</version>
<configuration>
<aggregate>
true
</aggregate>
<!-- for aggregated report -->
<highlighting>
true
</highlighting>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>
report
</report>
<!-- select only one report from: report, integration-report and report-only reporters -->
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
...
...
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