Commit Graph

17940 Commits

Author SHA1 Message Date
Eugene Yokota d887d7d824 Fix POM settings 2016-05-08 16:18:23 -04:00
Eugene Yokota 426f43f618 Fix bintrayRepository 2016-05-08 15:29:28 -04:00
Eugene Yokota d150825e18 Set crossScalaVersions for sbt 2016-05-08 15:01:00 -04:00
Eugene Yokota f96d3a2540 rename conscripted app from sbt to xsbt 2016-05-08 14:50:28 -04:00
Eugene Yokota dac9d2135c readme 2016-05-08 14:49:43 -04:00
Eugene Yokota 1d7872dad5 notes 2016-05-08 13:35:57 -04:00
eugene yokota 97a9a4efaf Merge pull request #37 from ddworak/fport/2499
FPORT: Fix a few typos
2016-05-08 13:28:32 -04:00
ddworak a70c79a731 fix typos 2016-05-08 12:53:19 +02:00
eugene yokota bcd3659935 Merge pull request #2594 from eed3si9n/wip/reorg
[sbt 1.0] Refactoring
2016-05-07 22:11:27 -04:00
Eugene Yokota a322684cb7 Remove comment per review 2016-05-07 20:31:28 -04:00
Eugene Yokota d437e8299e Typo fix 2016-05-07 20:31:19 -04:00
Eugene Yokota bc90cd2866 Fix dependency-management/cache-update 2016-05-07 17:20:55 -04:00
Eugene Yokota 785270faf0 Start hiding internal types 2016-05-07 16:26:33 -04:00
Eugene Yokota 420679df10 Address Codacy issues 2016-05-07 15:46:22 -04:00
Eugene Yokota 772e5bc06c Fix tests after moving things to internal 2016-05-06 20:19:18 -04:00
eugene yokota 3859aac569 Merge pull request #2593 from eed3si9n/fport/2500
FPORT: Fix sbt/sbt#2431
2016-05-06 19:26:47 -04:00
Eugene Yokota 0cc9488632 Bring BuildStructure and others into internal 2016-05-06 19:21:13 -04:00
Eugene Yokota ce3926fbed Bring EvaluateConfigurations and DslEntry to internal 2016-05-06 17:32:26 -04:00
Eugene Yokota 6304b24916 Remove old specification file from this location 2016-05-06 16:04:24 -04:00
Eugene Yokota ee272d780e Reorganize directory structure 2016-05-06 16:01:49 -04:00
Eugene Yokota 6b012b45fa Bump librarymanagement to 0.1.0-M9. Ref #2500 2016-05-06 13:10:39 -04:00
Martin Duhem 5e7e64e1c6 Mark test dependency-management/default-artifact as passing 2016-05-06 13:04:17 -04:00
Martin Duhem 49a934ffdb Pending test for sbt/sbt#2431 2016-05-06 13:04:17 -04:00
eugene yokota 77fd2203f9 Merge pull request #36 from Duhemm/fport/2500
FPORT: Fix sbt/sbt#2431
2016-05-06 12:43:09 -04:00
Alexandre Archambault 00484df435
Exception.getMessage can be null 2016-05-06 13:53:53 +02:00
Alexandre Archambault 3834a9519c
Allow to print dependency trees 2016-05-06 13:53:49 +02:00
eugene yokota 6a9ced8eb6 Merge pull request #2589 from eed3si9n/wip/bumptozinc
[sbt 1.0] Bumping up to Zinc 1.0.0-M1
2016-05-06 05:40:58 -04:00
Eugene Yokota 60fa2b842a Renamed per review 2016-05-06 01:41:17 -04:00
Eugene Yokota 03c3c5cf08 Fixes project/auto-plugins and add pending test for nested
There seems to be an issue with the discovery of auto plugins in an
inner nested class. The error you would get is:

[info] java.lang.ClassNotFoundException: sbttest.Imports.A$
[info] 	at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
[info] 	at java.security.AccessController.doPrivileged(Native Method)
[info] 	at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
[info] 	at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
[info] 	at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
[info] 	at java.lang.Class.forName0(Native Method)
[info] 	at java.lang.Class.forName(Class.java:249)
[info] 	at
sbt.internal.inc.ModuleUtilities$.getObject(ModuleUtilities.scala:16)
[info] 	at
sbt.internal.inc.ModuleUtilities$.getCheckedObject(ModuleUtilities.scala
:22)
[info] 	at
sbt.internal.inc.ModuleUtilities$$anonfun$getCheckedObjects$1.apply(Modu
leUtilities.scala:25)
[info] 	at
sbt.internal.inc.ModuleUtilities$$anonfun$getCheckedObjects$1.apply(Modu
leUtilities.scala:25)
[info] 	at scala.collection.immutable.Stream.map(Stream.scala:418)
[info] 	at
sbt.internal.inc.ModuleUtilities$.getCheckedObjects(ModuleUtilities.scal
a:25)
[info] 	at sbt.PluginDiscovery$.loadModules(PluginDiscovery.scala:138)
[info] 	at
sbt.PluginDiscovery$.binarySourceModules(PluginDiscovery.scala:132)
[info] 	at sbt.PluginDiscovery$.discover$1(PluginDiscovery.scala:36)
[info] 	at sbt.PluginDiscovery$.discoverAll(PluginDiscovery.scala:45)
[info] 	at sbt.internal.Load$.loadPlugins(Load.scala:856)
2016-05-06 01:39:13 -04:00
Eugene Yokota f8ef449789 Fix test quick 2016-05-06 01:30:35 -04:00
Martin Duhem 8e333984f2 Create default artifact for deps from POM files
Dependency descriptors that are created from POM files do not specify
their artifacts. In those cases, it is correct to create a default
artifact.
2016-05-06 07:10:42 +02:00
Martin Duhem bd082a562b Check that default artifact exists when trying to retrieve it.
When concatenating the artifacts coming from two modules, we sometimes
attempted to create a default artifact from the organization and name of
the module.

However, this may fail because a module a % b "1.0" may not have an
artifact named "b.jar" (see sbt/sbt#2431).

Fixes sbt/sbt#2431.
2016-05-06 07:08:33 +02:00
Eugene Yokota 18ef703386 Fix test framework tests 2016-05-06 00:34:12 -04:00
Eugene Yokota 28c37d1014 Fixes source-dependencies/transitive-memberRef 2016-05-06 00:12:07 -04:00
Eugene Yokota ee6af2c06d Remove trait-super test from sbt/sbt 2016-05-05 23:59:30 -04:00
Eugene Yokota f2ad99594e Remove trait-private-var test from sbt/sbt 2016-05-05 23:44:11 -04:00
Eugene Yokota e3560e4ed6 Old incremental compiler is no more 2016-05-05 23:37:31 -04:00
Eugene Yokota 8e7ab49594 Disable source-dependencies/import-class 2016-05-05 23:32:13 -04:00
Eugene Yokota c4ca5b0fd7 Fix source-dependencies/cross-source 2016-05-05 23:30:32 -04:00
Eugene Yokota 0eba0c35ca Fix project/isolated-build-definitions 2016-05-05 23:26:29 -04:00
Eugene Yokota a39295bdaf Fix project/global-plugin 2016-05-05 23:26:04 -04:00
Eugene Yokota 72e89496b5 Fix project/flatten 2016-05-05 23:16:41 -04:00
Eugene Yokota d09a164c92 Fix project/binary-plugin 2016-05-05 22:51:42 -04:00
Eugene Yokota 8875b6819f Fix project/auto-import 2016-05-05 22:46:14 -04:00
Eugene Yokota c0da8561cb Fix compiler-project/semantic-errors 2016-05-05 21:49:39 -04:00
Eugene Yokota 88f72b62d9 Remove run2.8 test 2016-05-05 21:46:31 -04:00
Eugene Yokota 5d8b3e7dd9 Remove int-ant-style test 2016-05-05 21:45:52 -04:00
Eugene Yokota ea941545e4 Fix apiinfo/show-circular-structure 2016-05-05 21:27:12 -04:00
Eugene Yokota 738e8fb2f3 Adjust discovery code to new Zinc 2016-05-05 16:11:57 -04:00
Eugene Yokota fd7c162ea8 Bumping up dependencies 2016-05-05 14:38:24 -04:00